13 lines
260 B
TypeScript
13 lines
260 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
export default {
|
|
content: [
|
|
"./app/**/*.{ts,tsx}",
|
|
"./components/**/*.{ts,tsx}",
|
|
"./features/**/*.{ts,tsx}",
|
|
"./shared/**/*.{ts,tsx}"
|
|
],
|
|
theme: { extend: {} },
|
|
plugins: []
|
|
} satisfies Config;
|