Deploy Next.js on the platform it was made for →
Deploy Next.js in seconds →
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:
x-powered-by
next.config.js
poweredByHeader
module.exports = { poweredByHeader: false, }