Skip to content

Instantly share code, notes, and snippets.

@tom76kimo
Created January 7, 2016 14:59
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 tom76kimo/492434b47985c530b0c2 to your computer and use it in GitHub Desktop.
Save tom76kimo/492434b47985c530b0c2 to your computer and use it in GitHub Desktop.
var webpack = require("webpack");
module.exports = {
entry: {
app: "./app.js",
vendor: ["jquery", "underscore", ...],
},
output: {
filename: "bundle.js"
},
plugins: [
new webpack.optimize.CommonsChunkPlugin(/* chunkName= */"vendor", /* filename= */"vendor.bundle.js")
]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment