Skip to content

Instantly share code, notes, and snippets.

@glennreyes
Created October 21, 2017 17:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save glennreyes/17c2394e0d3f6297c32ff233ad280c52 to your computer and use it in GitHub Desktop.
Save glennreyes/17c2394e0d3f6297c32ff233ad280c52 to your computer and use it in GitHub Desktop.
Disable Code Splitting in webpack
module.exports = {
plugins: [
new webpack.optimize.LimitChunkCountPlugin({
maxChunks: 1,
}),
],
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment