79745954

Date: 2025-08-25 15:45:25
Score: 1
Natty:
Report link

The problem is the URL string — you used a Cyrillic р instead of a normal ASCII p in http.

Change this:

fetch('httр://localhost:3000/api/test')

to this:

fetch('http://localhost:3000/api/test')

(or just fetch('/api/test') inside Next.js).

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Omar EZKER