vite + vue3 + ts + element-plus 项目
编译 warning
解决方案
删除 @charset
修改vite.config.ts
文件
css: {
postcss: {
plugins: [
{
postcssPlugin: 'internal:charset-removal',
AtRule: {
charset: (atRule) => {
if (atRule.name === 'charset') {
atRule.remove();
}
}
}
}
]
}
}
网友评论