debug tools for nextjs request
Unanswered
Tan posted this in #help-forum
TanOP
Hello, i would like to know if there are ways to debug request in nextjs serverside just like one can it do in browser with devtools
3 Replies
TanOP
currently i go with
or when i do post serverside with axios
console.log(req) // Req is NextApiRequestor when i do post serverside with axios
const res = await axios.post(...);
console.log(res);Are there better ways to monitor what requests serverside other than in console?
Cuban Crocodile
Have you figured this out?