diff --git a/compiler/webpack.config.js b/compiler/webpack.config.js index 56cdbd9..ad636f6 100644 --- a/compiler/webpack.config.js +++ b/compiler/webpack.config.js @@ -146,7 +146,13 @@ function setReleaseConfig(config) { emitOnErrors: true, usedExports: false, minimize: true, - minimizer: [new TerserPlugin()] + minimizer: [new TerserPlugin({ + terserOptions: { + compress: { + join_vars: false + } + } + })] }; config.output.sourceMapFilename = '_releaseMap/[name].js.map'; }