Skip to content

Commit

Permalink
Allows setting of parallelization options
Browse files Browse the repository at this point in the history
  • Loading branch information
masato-hi committed May 15, 2019
1 parent 40987fe commit 66d17de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package/environments/production.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ module.exports = class extends Base {
optimization: {
minimizer: [
new TerserPlugin({
parallel: true,
parallel: Number.parseInt(process.env.WEBPACKER_PARALLEL) || true,
cache: true,
sourceMap: true,
terserOptions: {
Expand Down

0 comments on commit 66d17de

Please sign in to comment.