Skip to content

Instantly share code, notes, and snippets.

@satishgowda28
Created February 13, 2018 03:53
Show Gist options
  • Save satishgowda28/1e2860ad2945a9665344fd2d73d3d9b2 to your computer and use it in GitHub Desktop.
Save satishgowda28/1e2860ad2945a9665344fd2d73d3d9b2 to your computer and use it in GitHub Desktop.
module.exports = {
devtool:"source-map",
externals:{
'jquery':'jQuery'
},
target:'web',
entry:{
home:'./app/home.js',
feed:'./app/feed.js',
inspire:'../app/inspire.js',
},
output:{
path:path.join(__dirname,'./app/dist'),
publicPath:'/app/dist/',
filename:'[name].bundle.js',
chunkFilename:'[id].chunk.js'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment