Spaces:
Running
Running
File size: 308 Bytes
d669ddb |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
/** @type {import('tailwindcss').Config} */
module.exports = {
// 禁用预加载,修复tailwind样式 与 naive-ui button等样式等冲突问题
corePlugins: {
preflight: false,
},
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {},
},
plugins: [],
};
|