2024-06-25 21:59:50 +08:00
|
|
|
import type { Config } from 'tailwindcss';
|
|
|
|
|
|
|
|
const config = {
|
2024-09-28 14:58:45 +08:00
|
|
|
content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
|
2024-08-19 10:13:50 +08:00
|
|
|
prefix: 'tw-',
|
2024-06-25 21:59:50 +08:00
|
|
|
} satisfies Config;
|
|
|
|
|
|
|
|
export default config;
|