Back to Next Js

poweredByHeader

docs/01-app/03-api-reference/05-config/01-next-config-js/poweredByHeader.mdx

16.2.5220 B
Original Source

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

js
module.exports = {
  poweredByHeader: false,
}