beatmatchr/frontend/tailwind.config.ts
2025-11-10 16:13:01 -05:00

15 lines
233 B
TypeScript

import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./app/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}'
],
theme: {
extend: {}
},
plugins: []
};
export default config;