Browse Source
Merge pull request #1039 from gre/disable-minimize-for-all
Disable minimize for all bundles
master
Gaëtan Renaudeau
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
8 additions and
1 deletions
-
webpack/internals.config.js
-
webpack/main.config.js
-
webpack/renderer.config.js
|
|
@ -47,4 +47,8 @@ module.exports = webpackMain().then(config => ({ |
|
|
|
}, |
|
|
|
|
|
|
|
plugins: [...plugins('internals'), ...config.plugins], |
|
|
|
|
|
|
|
optimization: { |
|
|
|
minimize: false, |
|
|
|
}, |
|
|
|
})) |
|
|
|
|
|
@ -9,6 +9,9 @@ const config = { |
|
|
|
module: { |
|
|
|
rules, |
|
|
|
}, |
|
|
|
optimization: { |
|
|
|
minimize: false, |
|
|
|
}, |
|
|
|
} |
|
|
|
|
|
|
|
module.exports = config |
|
|
|
|
|
@ -15,7 +15,7 @@ const config = { |
|
|
|
historyApiFallback: true, |
|
|
|
}, |
|
|
|
optimization: { |
|
|
|
minimizer: [], |
|
|
|
minimize: false, |
|
|
|
}, |
|
|
|
} |
|
|
|
|
|
|
|