Added webpack build config

This commit is contained in:
euvl
2016-11-14 15:46:35 +00:00
parent 0a1017bfc4
commit a13056c608
12 changed files with 102 additions and 56 deletions

8
webpack.dev.config.js Normal file
View File

@@ -0,0 +1,8 @@
var config = require('./webpack.base.config');
config.devtool = 'eval-source-map';
config.devServer = {
noInfo: true
};
module.exports = config;