Example of pre-rendering method for Vue single page application

Example of pre-rendering method for Vue single page application

Preface

Projects 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 version

Install

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 version

The 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.

Summarize

1. 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:
  • vue-cli single page pre-rendering seo-prerender-spa-plugin operation

<<:  Detailed graphic tutorial on installing centos7 virtual machine in Virtualbox

>>:  Web page creation for beginners: Learn to use HTML's hyperlink A tag

Recommend

Detailed explanation of the cache implementation principle of Vue computed

Table of contents Initialize computed Dependency ...

Mobile web screen adaptation (rem)

Preface I recently sorted out my previous notes o...

Docker Basic Tutorial: Detailed Explanation of Dockerfile Syntax

Preface Dockerfile is a script interpreted by the...

Example of implementing load balancing with Nginx+SpringBoot

Introduction to Load Balancing Before introducing...

MySQL series multi-table join query 92 and 99 syntax examples detailed tutorial

Table of contents 1. Cartesian product phenomenon...

Win2008 R2 mysql 5.5 zip format mysql installation and configuration

Win2008 R2 zip format mysql installation and conf...

Linux hardware configuration command example

Hardware View Commands system # uname -a # View k...

5 things to note when writing React components using hooks

Table of contents 01. Use useState when render is...

Basic installation process of mysql5.7.19 under winx64 (details)

1. Download https://dev.mysql.com/downloads/mysql...

Eight common SQL usage examples in MySQL

Preface MySQL continued to maintain its strong gr...

Detailed explanation of MySQL database (based on Ubuntu 14.0.4 LTS 64 bit)

1. Composition and related concepts of MySQL data...

Swiper.js plugin makes it super easy to implement carousel images

Swiper is a sliding special effects plug-in built...

A brief discussion on when MySQL uses internal temporary tables

union execution For ease of analysis, use the fol...

Detailed steps for developing Java payment interface for Alipay

Table of contents first step Step 2 Step 3 Step 4...

How to use squid to build a proxy server for http and https

When we introduced nginx, we also used nginx to s...