提交 9c3dc4ba 编写于 作者: A afc163

update webpack dev config

上级 93ad7f49
......@@ -31,26 +31,28 @@ exports.writers = [
exports.middlewares = [{
name: 'webpack',
filter: /index\.js/,
handle: webpackMiddleware(webpack(require('./webpack.config')), {
// all options optional
handle: function(req, res, next) {
return webpackMiddleware(webpack(require('./webpack.config')), {
// all options optional
noInfo: false,
// display no info to console (only warnings and errors)
noInfo: false,
// display no info to console (only warnings and errors)
watchDelay: 300,
// delay after change (only lazy: false)
watchDelay: 300,
// delay after change (only lazy: false)
publicPath: "/dist/",
// public path to bind the middleware to
// use the same as in webpack
publicPath: "/dist/",
// public path to bind the middleware to
// use the same as in webpack
headers: { "X-Custom-Header": "yes" },
// custom headers
headers: { "X-Custom-Header": "yes" },
// custom headers
stats: {
colors: true
}
// options for formating the statistics
})
stats: {
colors: true
}
// options for formating the statistics
})(req, res, next);
}
}];
// end settings }}
......@@ -27,7 +27,7 @@
"webpack-dev-middleware": "~1.0.11"
},
"scripts": {
"build": "npm run clean && nico build",
"build": "npm run clean && webpack && nico build",
"start": "npm run clean && nico server --watch",
"clean": "rm -rf _site",
"deploy": "npm run build && gh-pages -d _site -b master"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册