fix: 修复现代浏览器 polyfill 问题 (#147)

This commit is contained in:
qlin 2022-08-23 17:41:53 +08:00 committed by GitHub
parent fdf3e83bd2
commit dbbf447362
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 2 deletions

View File

@ -37,6 +37,7 @@
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-safe-parser": "^6.0.0",
"rollup-plugin-visualizer": "^5.6.0",
"terser": "^5.14.2",
"vite": "^3.0.4",
"vite-plugin-html": "^3.2.0"
},

View File

@ -23,11 +23,13 @@ export default async (api) => {
},
plugins: [
legacy({
modernPolyfills: true,
targets,
}),
],
build: {
...build,
minify: 'terser',
terserOptions: build.terserOptions || api.config.terserOptions,
target: build.target || 'es2015',
outDir: build.outDir || api.config.outputPath || 'dist',

View File

@ -14,7 +14,10 @@ export default {
FButton,
},
setup() {
return {};
const a = 'aa'.replaceAll('a', 1);
return {
a,
};
},
};
</script>

View File

@ -10113,7 +10113,7 @@ terser-webpack-plugin@^5.1.3:
serialize-javascript "^6.0.0"
terser "^5.14.1"
terser@^5.0.0, terser@^5.10.0, terser@^5.14.1:
terser@^5.0.0, terser@^5.10.0, terser@^5.14.1, terser@^5.14.2:
version "5.14.2"
resolved "https://registry.npmmirror.com/terser/-/terser-5.14.2.tgz#9ac9f22b06994d736174f4091aa368db896f1c10"
integrity sha512-oL0rGeM/WFQCUd0y2QrWxYnq7tfSuKBiqTjRPWrRgB46WD/kiwHwF8T23z78H6Q6kGCuuHcPB+KULHRdxvVGQA==