go-proxy-bingai/frontend/tailwind.config.js

13 lines
308 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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