Vue SPA的Prerender html文件的自定义目录

问题描述 投票:0回答:1

轮到我问有关Vue App中的prerender-spa-plugin的问题。

我想将/dist文件夹中的呈现的路由页面HTML分配到以下格式的子文件夹中:

/dist/
 - index.html
 - /pages/
     - about.html
     - contact.html

到目前为止,我的about.htmlcontact.htmldist一起渲染在index.html处>

我的vue.config.js的SPA预渲染代码段如下

pluginOptions: {
    prerenderSpa: {
      registry: undefined,
      renderRoutes: [
        '/',
        '/about'
        '/contact',
      ],
      useRenderEvent: true,
      headless: true,
      onlyProduction: true,
    },

所以我如何实现上述格式的渲染?我有点renderedRoute是我需要处理的东西。预先谢谢您(_ _;)

轮到我询问有关Vue App中的prerender-spa-plugin。我想将渲染的路由页面HTML从/ dist文件夹分配到子文件夹,例如以下格式:/ dist /-index.html-/ ...

vue.js single-page-application prerender
1个回答
0
投票

有可能,但您有所更改。

© www.soinside.com 2019 - 2024. All rights reserved.