Skip to content
This repository has been archived by the owner on Mar 31, 2020. It is now read-only.

Latest commit

 

History

History
13 lines (10 loc) · 351 Bytes

disabling-x-powered-by.md

File metadata and controls

13 lines (10 loc) · 351 Bytes
description
Next.js will add `x-powered-by` to the request headers by default. Learn to opt-out of it here.

Disabling x-powered-by

By default Next.js will add x-powered-by to the request headers. To opt-out of it, open next.config.js and disable the poweredByHeader config:

module.exports = {
  poweredByHeader: false,
}