79396655

Date: 2025-01-29 12:04:24
Score: 1
Natty:
Report link

The issue is that loading.tsx only works for route segments, and since your page.tsx is directly inside src/app/, Next.js doesn’t recognize it as a separate segment. To fix this, just move both page.tsx and loading.tsx into a subfolder like src/app/home/. That way, Next.js will show the loading screen while the page is loading.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Ninad