Set up simple webpack config

This commit is contained in:
Cole Bemis
2017-01-28 13:55:50 -08:00
parent 4cf99d1d0a
commit 45602abe9e
3 changed files with 143 additions and 1 deletions

9
webpack.config.js Normal file
View File

@@ -0,0 +1,9 @@
var path = require('path');
module.exports = {
entry: './src/main.js',
output: {
path: path.resolve(__dirname),
filename: 'bundle.js'
}
}