Skip to content

Instantly share code, notes, and snippets.

@antonfisher
Created January 6, 2018 00:55
Show Gist options
  • Save antonfisher/32653258feec3131a4075eb07ee14c1c to your computer and use it in GitHub Desktop.
Save antonfisher/32653258feec3131a4075eb07ee14c1c to your computer and use it in GitHub Desktop.
plugins: [
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks: (module) => {
if (module.resource && /^.*\.(css|scss)$/.test(module.resource)) {
return false;
}
return module.context && module.context.includes('node_modules');
}
})
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment