make webpack middleware into boot scripts

This commit is contained in:
2017-01-22 14:05:55 -07:00
parent 88b860958b
commit 7eac56f092
7 changed files with 25 additions and 30 deletions

View File

@@ -0,0 +1,9 @@
const webpack = require('webpack');
const config = require('../config/webpack.dev');
const compiler = webpack(config);
module.exports = {
compiler,
config,
};