Created
July 25, 2018 21:27
-
-
Save mgreer/6d8bb615bb42f1d892919356816e732d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config.optimization = { | |
minimizer: [ | |
new UglifyJsPlugin({ | |
parallel: true, | |
sourceMap: true, | |
}), | |
], | |
splitChunks: { | |
chunks: 'initial', | |
cacheGroups: { | |
default: { | |
reuseExistingChunk: true, | |
minChunks: 2, | |
priority: -20, | |
}, | |
vendors: false, | |
// Merge all the Stylus into one file | |
styles: { | |
name: 'styles', | |
test: /\.(styl)$/, | |
enforce: true, | |
}, | |
}, | |
}, | |
runtimeChunk: { | |
name: 'manifest', | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment