Skip to content

Instantly share code, notes, and snippets.

@vamsiampolu
Created April 19, 2016 02:54
Show Gist options
  • Save vamsiampolu/d7540648c65182023a162b90fd6b2bf5 to your computer and use it in GitHub Desktop.
Save vamsiampolu/d7540648c65182023a162b90fd6b2bf5 to your computer and use it in GitHub Desktop.
Webpack Configuration with dev server
module.exports = {
entry:'./app.js',
output:{
filename:'bundle.js',
path:'./build'
},
devServer:{
stats:'errors-only',
contentBase:'./build',
inline:true,
progress:true,
port:3010,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment