go-proxy-bingai / frontend /tailwind.config.js
wuyuncheng-26's picture
upload files from Harry-zklcdc/go-proxy-bingai
d669ddb verified
raw
history blame contribute delete
308 Bytes
/** @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: [],
};