Appearance
warning: "@charset" must be the first rule in the file
scss 文件中有中文
修改 vite.config.js,加入以下内容
vite.config.js
css: { postcss: { plugins: [ { postcssPlugin: "internal:charset-removal", AtRule: { charset: (atRule) => { if (atRule.name === "charset") { atRule.remove(); } }, }, }, ], }, },