15 lines
233 B
TypeScript
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;
|