Files
cost-frontend/tailwind.config.js
2024-06-12 09:50:18 +08:00

12 lines
217 B
JavaScript

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