nuxt清除网页源代码
时间: 2023-11-13 18:02:00 浏览: 81
网页代码清除工具
Nuxt.js生成的网页源代码是包含很多注释和空格的,这对于SEO和网站性能都不是很友好。可以通过以下方法清除Nuxt.js生成的网页源代码:
1. 安装 `html-minifier` 插件
```bash
npm install html-minifier -D
```
2. 在 `nuxt.config.js` 文件中添加以下代码
```js
const HTMLMinifier = require('html-minifier')
export default {
// ...
hooks: {
'render:route': (url, page, { req, res }) => {
page.html = HTMLMinifier.minify(page.html, {
collapseWhitespace: true,
removeComments: true,
minifyCSS: true,
minifyJS: true
})
}
}
}
```
这样就可以在每次渲染页面时压缩HTML代码,去除注释和空格。
阅读全文