Files
1Panel/frontend/tailwind.config.js
2026-05-22 22:37:08 +08:00

13 lines
266 B
Go

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