[Vuejs]-Vue-cli-plugin-prerender-spa generate with error not found inside html file

0👍

It looks like a little naive but in your PrerenderSplaPlugin config you should use headless false to see if your page is correctly loaded with content.
It could be a starting point.

renderer: new Renderer({
  headless: false
})

Leave a comment