poweredByHeader

Por defecto, Next.js agrega el encabezado x-powered-by. Para deshabilitarlo, abre next.config.js y configura poweredByHeader como falso:

next.config.js
module.exports = {
  poweredByHeader: false,
}