Skip to content
This repository has been archived by the owner on Jan 6, 2023. It is now read-only.

Commit

Permalink
Disable Terser Minification
Browse files Browse the repository at this point in the history
  • Loading branch information
apvarun committed Nov 17, 2019
1 parent d9cc3f6 commit 6d60b5f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion config/webpack.config.js
Expand Up @@ -211,7 +211,8 @@ module.exports = function(webpackEnv) {
globalObject: 'this',
},
optimization: {
minimize: (isEnvDemo || isEnvProduction), // CRL
// DISABLE MINIMIZER UNTIL TERSER keep_fnames ISSUE IS FIXED
minimize: false, //(isEnvDemo || isEnvProduction), // CRL
minimizer: [
// This is only used in production mode
new TerserPlugin({
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "react-onboarding-pro",
"version": "0.4.1",
"version": "0.4.2",
"main": "build/index.js",
"scripts": {
"start": "node scripts/start.js",
Expand Down

0 comments on commit 6d60b5f

Please sign in to comment.