From 73ce837cb6d313dbcb3247570e43825a22e04702 Mon Sep 17 00:00:00 2001 From: xiaoxian521 <1923740402@qq.com> Date: Wed, 8 Dec 2021 14:32:36 +0800 Subject: [PATCH] fix: vite build --- vite.config.ts | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index cc52ca7..f49da76 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -38,6 +38,23 @@ export default ({ command, mode }: ConfigEnv): UserConfigExport => { resolve: { alias }, + css: { + // https://github.com/vitejs/vite/issues/5833 + postcss: { + plugins: [ + { + postcssPlugin: "internal:charset-removal", + AtRule: { + charset: atRule => { + if (atRule.name === "charset") { + atRule.remove(); + } + } + } + } + ] + } + }, // 服务端渲染 server: { // 是否开启 https @@ -145,8 +162,7 @@ export default ({ command, mode }: ConfigEnv): UserConfigExport => { sourcemap: false, brotliSize: false, // 消除打包大小超过500kb警告 - chunkSizeWarningLimit: 2000, - minify: false + chunkSizeWarningLimit: 2000 }, define: { __INTLIFY_PROD_DEVTOOLS__: false