Browse Source

update webpack dev config

pull/4/head
afc163 10 years ago
parent
commit
9c3dc4ba3c
  1. 34
      nico.js
  2. 2
      package.json

34
nico.js

@ -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 }}

2
package.json

@ -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"

Loading…
Cancel
Save