header.js 218 B

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