How can I get Express to output nicely formatted HTML?

前端 未结 9 635
名媛妹妹
名媛妹妹 2020-11-28 01:13

When using Express for Node.js, I noticed that it outputs the HTML code without any newline characters or tabs. Though it may be more efficient to download, it\'s not very r

9条回答
  •  孤城傲影
    2020-11-28 01:52

    In express 4.x, add this to your app.js:

    app.locals.pretty = app.get('env') === 'development';
    

提交回复
热议问题