kstulgysK
Convex Community13mo ago
2 replies
kstulgys

Error: Unexpected token 'N', "No matchin"... is not valid JSON

http.route({
  path: "/resources/",
  method: "GET",
  handler: httpAction(async (ctx, request) => {
   // getting id from url etc
  }),
});


This throws me an error in nextjs server component:
Error: Unexpected token 'N', "No matchin"... is not valid JSON


  const response = await fetch(`${API_URL}/resources/${resourceId}`);


Why? How should I change my code?
Was this page helpful?