Skip to content

Instantly share code, notes, and snippets.

@vesic
Created August 23, 2016 16:06
Show Gist options
  • Save vesic/b3b1e9846a0012f5cc278d844ad9554b to your computer and use it in GitHub Desktop.
Save vesic/b3b1e9846a0012f5cc278d844ad9554b to your computer and use it in GitHub Desktop.
module.exports = {
entry: "./entry.js",
output: {
path: __dirname,
filename: "bundle.js"
},
module: {
loaders: [{
test: /\.css$/,
loader: "style!css"
},{
test: /\.js$/,
loader: 'babel-loader'
}]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment