rsnext/docs/api-reference/next.config.js/disabling-x-powered-by.md
Luis Alvarez D 7fc850e28a [docs] Added related links to next.config.js (#10174)
* Added related links

* Added missing dots
2020-01-20 21:40:20 +01:00

580 B

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,
}