Created
February 13, 2018 03:53
-
-
Save satishgowda28/1e2860ad2945a9665344fd2d73d3d9b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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