16 lines
246 B
TypeScript
16 lines
246 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./app/**/*.{ts,tsx}",
|
|
"./components/**/*.{ts,tsx}",
|
|
"./lib/**/*.{ts,tsx}"
|
|
],
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: []
|
|
};
|
|
|
|
export default config;
|