PrefaceProjects packaged with vue-cli are generally spa projects. As we all know, single-page applications are not conducive to SEO. There are two solutions: ssr (server-side rendering) and pre-rendering. Here we only discuss pre-rendering. vue-cli 2.0 versionInstall npm install prerender-spa-plugin --save webpack.prod.conf.js add some code const path = require('path') const PrerenderSPAPlugin = require('prerender-spa-plugin') // Import plugin const Renderer = PrerenderSPAPlugin.PuppeteerRenderer plugins:[ // Configure PrerenderSPAPlugin new PrerenderSPAPlugin({ // The path of the generated file can also be consistent with the path packaged by webpakc. staticDir: path.join(__dirname, '../dist'), // Corresponding to your own routing file, for example, if index has parameters, you need to write it as /index/param1. routes: ['/', '/report','/genius','/index/param1'], // Must be written, if this section is not configured, precompilation will not be performedrenderer: new Renderer({ inject: { foo: 'bar' }, headless: false, // In main.js, document.dispatchEvent(new Event('render-event')), the event names of the two should correspond. renderAfterDocumentEvent: 'render-event' }) }) ] Add in main.js new Vue({ el: '#pingce', router, store, components: { App }, template: '<App/>', // Add mounted, otherwise precompilation will not be executed mounted () { document.dispatchEvent(new Event('render-event')) } }) Set mode: "history" in router.js Run npm run build and check whether there is a folder corresponding to each route name in the generated dist directory. Then find the index.html in the directory and open it with IDE to see if the file contains the content that the file should have. Each route you configure will generate a folder, and then an index.html will be generated under each folder. vue-cli 3.0 versionThe 3.0 cli looks much simpler, removing the 2.0 build and config directories. So how do we modify the webpack configuration? Create vue.config.js in the root directory and make your configuration. Install npm install prerender-spa-plugin --save Add in vue-config.js const PrerenderSPAPlugin = require('prerender-spa-plugin'); // Import plugin const Renderer = PrerenderSPAPlugin.PuppeteerRenderer; const path = require('path'); module.exports = { configureWebpack: config => { if (process.env.NODE_ENV !== 'production') return; return { plugins: [ new PrerenderSPAPlugin({ // The path of the generated file can also be consistent with the path packaged by webpakc. // This directory can only have one level. If the directory level is greater than one level, there will be no error prompt during generation, and it will just get stuck during pre-rendering. staticDir: path.join(__dirname,'dist'), // Corresponding to your own routing file, for example, if about has parameters, you need to write it as /about/param1. routes: ['/', '/product', '/about'], //Must configure otherwise precompilation will not be performedrenderer: new Renderer({ inject: { foo: 'bar' }, headless: false, // In main.js, document.dispatchEvent(new Event('render-event')), the event names of the two should correspond. renderAfterDocumentEvent: 'render-event' }) }), ], }; } } Add in main.js new Vue({ router, store, render: h => h(App), // The name of renderAfterDocumentEvent in vue-config.js: 'render-event' must correspond to mounted () { document.dispatchEvent(new Event('render-event')) } }).$mount('#app') Set mode: "history" in router.js Run npm run build and check whether there is a folder corresponding to each route name in the generated dist directory. Summarize1. It is best to use history mode for routing. You can also run the generated file without using it, but the content of each index.html file is the same. 2. The settings in 3.0 are roughly the same as those in 2.0, but there are a few places that need attention. In 2.0, set staticDir: path.join(__dirname,'../dist') In 3.0, set staticDir: path.join(__dirname,'dist') If these two settings are wrong, running npm run build will report an error. If you want to set the title and meta information of each page, it is recommended to use [vue-meta-info] This is the end of this article about pre-rendering of Vue single-page applications. For more relevant Vue single-page application pre-rendering content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed graphic tutorial on installing centos7 virtual machine in Virtualbox
>>: Web page creation for beginners: Learn to use HTML's hyperlink A tag
Table of contents Initialize computed Dependency ...
Preface I recently sorted out my previous notes o...
Preface Dockerfile is a script interpreted by the...
Introduction to Load Balancing Before introducing...
Table of contents 1. Cartesian product phenomenon...
Win2008 R2 zip format mysql installation and conf...
Hardware View Commands system # uname -a # View k...
Table of contents 01. Use useState when render is...
1. Download https://dev.mysql.com/downloads/mysql...
Preface MySQL continued to maintain its strong gr...
1. Composition and related concepts of MySQL data...
Swiper is a sliding special effects plug-in built...
union execution For ease of analysis, use the fol...
Table of contents first step Step 2 Step 3 Step 4...
When we introduced nginx, we also used nginx to s...