Is it possible to enable logging in prod? | next 14.2
Unanswered
Naeemgg posted this in #help-forum
NaeemggOP
I'm refering to this
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.
//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.