Files

12 lines
217 B
JavaScript
Raw Permalink Normal View History

2024-06-12 09:50:18 +08:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
extend: {}
},
plugins: [],
corePlugins: {
preflight: false
}
};