Next.js Discord

Discord Forum

Is it possible to enable logging in prod? | next 14.2

Unanswered
Naeemgg posted this in #help-forum
Open in Discord
I'm refering to this
//next.config.js
module.exports = {
  logging: {
    fetches: {
      fullUrl: true,
    },
  },
}

https://nextjs.org/docs/app/api-reference/next-config-js/logging
I'm noticing a huge difference between local dev logs and vercel prod logs, I just want to confirm in local prod whats the issue.
In dev server its normal but in vercel logs I can see major increase in number of GET and POST requests sent to server.

0 Replies