1Panel/frontend/tailwind.config.js
2023-06-27 16:38:11 +08:00

12 lines
240 B
JavaScript

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