콘텐츠로 이동

next.config.js 옵션: poweredByHeader

next.config.js 옵션: poweredByHeader | Next.js

섹션 제목: “next.config.js 옵션: poweredByHeader | Next.js”

Source URL: https://nextjs.org/docs/pages/api-reference/config/next-config-js/poweredByHeader

마지막 업데이트 2026년 2월 20일

기본적으로 Next.js는 x-powered-by 헤더를 추가합니다. 이를 비활성화하려면 next.config.js를 열고 poweredByHeader 설정을 꺼 주세요:

next.config.js

module.exports = {
poweredByHeader: false,
}