Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 696 Bytes

File metadata and controls

17 lines (10 loc) · 696 Bytes

번역 완료 : https://nextjs.org/docs/app/api-reference/next-config-js/httpAgentOptions


httpAgentOptions

18 이전 Node.js 버전에서는 Next.js가 자동으로 fetch()node-fetch로 폴리필링하고 기본적으로 HTTP Keep-Alive를 활성화합니다.


서버 측의 모든 fetch() 호출에 대해 HTTP Keep-Alive를 비활성화하려면 next.config.js를 열고 httpAgentOptions 구성을 추가합니다:

next.config.js

module.exports = { httpAgentOptions: { keepAlive: false } };