Created
August 23, 2016 16:06
-
-
Save vesic/b3b1e9846a0012f5cc278d844ad9554b 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 = { | |
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