我正在将我的sails.js 0.9 app更新为0.10。使用旧版本,我可以美化这个配置的玉输出:
module.exports.config = function () {
if (sails.config.environment === 'development') {
// Pretty print output
sails.express.app.locals.pretty = true;
}
};
不幸的是,这已经改变,我不知道如何。如何使用新的sails.js版本来美化我的html代码?
答案 0 :(得分:1)
config/express.js
中的
customMiddleware: function (app) {
app.locals.pretty = true;
},
检查节点环境,如果您只想在开发阶段进行美化:
customMiddleware: function(app) {
if(process.env.NODE_ENV === 'development') {
app.locals.pretty = true;
}
},