turn webpack middleware into middleware

fix HMR middleware, and some loopback boilerplate cleanup
This commit is contained in:
2017-01-22 12:02:04 -07:00
parent c85b2e2702
commit f9e237da09
13 changed files with 75 additions and 61 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,
};