[Vuejs]-I'm using prerender-spa-plugin and it works, but Google doesn't see the prerendered pages

0👍

In your webpack.prod.conf.js add an option to renderer: new PuppeteerRenderer() that tells it to run once the app has been mounted:

renderer: new PuppeteerRenderer({
  renderAfterElementExists: "#app"
})

Leave a comment