Skip to content

Instantly share code, notes, and snippets.

@Bizunow
Created August 22, 2017 14:33
Show Gist options
  • Save Bizunow/6378521cd7c625942362c9302e9c4c9c to your computer and use it in GitHub Desktop.
Save Bizunow/6378521cd7c625942362c9302e9c4c9c to your computer and use it in GitHub Desktop.
[Webpack many etry points] #js #webpack
const path = require('path');
module.exports = {
entry: {
index: './src/index.js',
background: './bck/background.js'
},
output: {
path: path.resolve('build'),
filename: '[name].bundle.js'
},
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment