go-proxy-bingai/frontend/tailwind.config.js
2023-05-15 15:19:09 +08:00

13 lines
308 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/** @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: [],
};