initial webpack build, #632

This commit is contained in:
Alexander Zobnin
2018-10-21 14:08:27 +03:00
parent 8bcd9bc181
commit 331634dfdf
14 changed files with 2156 additions and 99 deletions

View File

@@ -0,0 +1,8 @@
const baseWebpackConfig = require('./webpack.base.conf');
var conf = baseWebpackConfig;
conf.watch = true;
conf.mode = 'development';
conf.devtool = 'source-map';
module.exports = baseWebpackConfig;