gpt4 book ai didi

javascript - NextJS 在生产中重写

转载 作者:行者123 更新时间:2023-12-05 02:48:45 28 4
gpt4 key购买 nike

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

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

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

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

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

最佳答案

只需从目标中删除域部分并使用绝对路径。

rewrites: async () => [
...nextI18NextRewrites(localeSubpaths),
{ source: '/api/:path*', destination: '/:path*' },
// ------------------------------------^
];

关于javascript - NextJS 在生产中重写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64347297/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com