Javascript – NextJS Serverside console is undefined when trying to log data
I am trying to render some data on the console that is being brought in from my route handler. Here in /api/pokemon/route.tsx export async function GET() { const result = await fetch('https://pokeapi.co/api/v2/pokemon?limit=151'); const data = await result.json(); return Response.json({ data…