Files
zn-ai/tailwind.config.js
2025-09-23 18:57:14 +08:00

12 lines
220 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
extend: {},
},
corePlugins: {
preflight: false,
},
plugins: [],
};