httpAgentOptions
在 18 之前的 Node.js 版本中,Next.js 会自动使用 undici 为 fetch()
提供 polyfill,并默认启用 HTTP Keep-Alive。
要禁用服务器端所有 fetch()
调用的 HTTP Keep-Alive,请打开 next.config.js
并添加 httpAgentOptions
配置
next.config.js
module.exports = {
httpAgentOptions: {
keepAlive: false,
},
}
这有帮助吗?