This page is also available as Markdown: request this page's URL with an
Accept: text/markdown header. For an index of Next.js documentation, see /docs/llms.txt.poweredByHeader
Last updated June 16, 2025
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:
next.config.js
module.exports = {
poweredByHeader: false,
}Was this helpful?