我的控制器通过另一个应用程序的控制器为我的 nuxt 应用程序提供服务。例如,点击https://google.com/my-address实际上会访问托管在 https://custom-address/ 的 nuxt 应用程序。初始加载返回服务器端渲染 html,并通过从 https://custom-address 获取适当的包成功地对页面进行水合。但是,后续导航 ( https://google.com/my-address/another-address/ ) 将尝试从https://google.com/_nuxt/而不是 https://custom-address 获取捆绑包。有没有办法在 webpack/nuxt 中配置这个地址?我假设这将是 webpack 特定的配置,但也许 nuxt 也有它的配置。提前致谢!
问问题
9 次
1 回答
0
您可以使用以下设置配置提供捆绑包的地址nuxt.config.js
:https ://nuxtjs.org/docs/configuration-glossary/configuration-build/#publicpath 。一个常见的用例是通过 CDN 为您的包提供服务。
于 2022-02-04T17:43:30.023 回答