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