-
-
Save rxw1/1a34f81515a6c89d2a1b to your computer and use it in GitHub Desktop.
Revisions
-
cahnory created this gist
Dec 21, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,22 @@ import connect from 'koa-connect'; import compose from 'koa-compose'; import webpack from 'webpack'; import webpackDev from 'webpack-dev-middleware'; import webpackHot from 'webpack-hot-middleware'; export default function (config = {}) { let compiler = webpack(config); return compose([ // quick fix function * (next) { this.status = 200; yield next; }, connect(webpackDev(compiler, { noInfo: true, publicPath: config.output.publicPath })), connect(webpackHot(compiler)) ]); }