Files
72e6b69d68a84678b2cb63d416f…/apps/cat-mini-app/tailwind.config.js
NVWA Code Agent ba64fe8efa fix build error
2025-12-11 16:52:22 +00:00

15 lines
304 B
JavaScript

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