步骤一:安装prerender-spa-plugin插件
npm install prerender-spa-plugin -D
步骤二:webpack.prod.conf.js新增以下代码
const path = require('path');
const PrerenderSPAPlugin = require('prerender-spa-plugin');
const Renderer = PrerenderSPAPlugin.PuppeteerRenderer;
module.exports = {
plugins: [new PrerenderSPAPlugin({
staticDir: path.join(__dirname, '../dist'),
// 需要预渲染的路由
routes: [
'/',
'/about',
'/contact'
],
renderer: new Renderer({
ignoreJSErrors: true,
inject: {
foo: 'bar'
},
headless: true,
renderAfterTime: 5000
})
})]
}
注意事项:很多人会掉入headless
的坑,如果设置为false
打包的时候会报以下错误!
ERROR in [prerender-spa-plugin] Unable to prerender all routes!
步骤三:打开router/index.js文件修改一下代码
const router = new VueRouter({
mode: "history",
base: process.env.BASE_URL,
routes,
// 预渲染,这是重点
mounted() {
document.dispatchEvent(new Event('custom-render-trigger'))
}
});
以上是编程学习网小编为您介绍的“vue2项目使用预渲染prerender-spa-plugin插件解决seo优化”的全面内容,想了解更多关于 vuejs 内容,请继续关注编程基础学习网。
沃梦达教程
本文标题为:vue2项目使用预渲染prerender-spa-plugin插件解决seo优化
基础教程推荐
猜你喜欢
- 详解JavaScript作用域和作用域链 2024-02-06
- js 中文汉字转Unicode、Unicode转中文汉字、ASCII转换Unicode、Unicode转换ASCII、中文转换X函数代码 2023-08-08
- vuejs获取本周的日历 2024-12-10
- ajax异步实现文件分片上传实例代码 2023-02-23
- VUE的路由(一):模式 2023-10-08
- css代码画三角形箭头(上下左右) 2024-12-13
- vue post application/x-www-form-urlencoded传参的解决方案 2023-10-08
- ThinkPHP表单数据智能写入create方法实例分析 2024-04-22
- 使用CSS3实现多列布局与多背景的技巧 2024-01-19
- 前端必会的Webpack优化技巧 2024-01-22