mirror of https://github.com/jkjoy/sunpeiwen.git
12 lines
218 B
JavaScript
12 lines
218 B
JavaScript
|
'use strict';
|
||
|
|
||
|
module.exports = function(app) {
|
||
|
const config = this.config.server || {};
|
||
|
if (!config.header) return;
|
||
|
|
||
|
app.use((req, res, next) => {
|
||
|
res.setHeader('X-Powered-By', 'Hexo');
|
||
|
next();
|
||
|
});
|
||
|
};
|