httpAgentOptions
Node.jsのバージョン18より前では、Next.jsは自動的にfetch()
をundiciでポリフィルし、デフォルトでHTTP Keep-Aliveを有効にします。
サーバーサイドでのすべてのfetch()
呼び出しに対してHTTP Keep-Aliveを無効にするには、next.config.js
を開き、httpAgentOptions
設定を追加してください:
next.config.js
module.exports = {
httpAgentOptions: {
keepAlive: false, // Keep-Aliveを無効にします
},
}