Browse Source

fix: vite build

i18n
xiaoxian521 3 years ago
parent
commit
73ce837cb6
  1. 20
      vite.config.ts

20
vite.config.ts

@ -38,6 +38,23 @@ export default ({ command, mode }: ConfigEnv): UserConfigExport => {
resolve: { resolve: {
alias 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: { server: {
// 是否开启 https // 是否开启 https
@ -145,8 +162,7 @@ export default ({ command, mode }: ConfigEnv): UserConfigExport => {
sourcemap: false, sourcemap: false,
brotliSize: false, brotliSize: false,
// 消除打包大小超过500kb警告 // 消除打包大小超过500kb警告
chunkSizeWarningLimit: 2000,
minify: false
chunkSizeWarningLimit: 2000
}, },
define: { define: {
__INTLIFY_PROD_DEVTOOLS__: false __INTLIFY_PROD_DEVTOOLS__: false

Loading…
Cancel
Save