NextJS 在生产中重写

我发现在开发中重写代理到我的后端服务器:

https://nextjs.org/docs/api-reference/next.config.js/rewrites

rewrites: async () => [
...nextI18NextRewrites(localeSubpaths),
{ source: '/api/:path*', destination: 'http://localhost:8080/:path*' },
],

如果 url 不是本地主机,这在生产中如何工作?

对于目的地,我需要添加完整域还是需要单独的开发/生产重写规则?


DIEA
浏览 137回答 1
1回答

千巷猫影

只需从目标中删除域部分并使用absolute路径即可。rewrites: async () => [  ...nextI18NextRewrites(localeSubpaths),  { source: '/api/:path*', destination: '/:path*' },  // ------------------------------------^];
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript