mirror of
https://github.com/HoshinoSuzumi/rayine-ui.git
synced 2025-04-10 20:18:50 +08:00
12 lines
219 B
TypeScript
12 lines
219 B
TypeScript
import { type Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./components/**/*.{vue,js,ts,jsx,tsx}",
|
|
"./ui.config/**/*.{vue,js,ts,jsx,tsx}",
|
|
],
|
|
safelist: [],
|
|
};
|
|
|
|
export default config;
|