header.js 221 B

1234567891011
  1. 'use strict';
  2. module.exports = function(app) {
  3. var config = this.config.server || {};
  4. if (!config.header) return;
  5. app.use(function(req, res, next) {
  6. res.setHeader('X-Powered-By', 'Hexo');
  7. next();
  8. });
  9. };