Deploy Next.js on Vercel →
Copy Logo as SVG
Copy Wordmark as SVG
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:
x-powered-by
next.config.js
poweredByHeader
module.exports = { poweredByHeader: false, }
Was this helpful?