Skip to content

Instantly share code, notes, and snippets.

@vamsiampolu
Created April 19, 2016 01:07
Show Gist options
  • Save vamsiampolu/bcdff5d5423083ad6342f053a8895678 to your computer and use it in GitHub Desktop.
Save vamsiampolu/bcdff5d5423083ad6342f053a8895678 to your computer and use it in GitHub Desktop.
Simple webpack config 02
module.exports = {
entry:'./app.js',
output:{
filename:'bundle.js',
path:'./build'
},
module:{
loaders:[
{
test:/\.scss$/,
loaders:['style','css','sass']
}
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment