depapp / IndoGitHubers

IndoGitHubers is an application that displays the GitHub rank of users in Indonesia.
https://indogithubers.com
73 stars 18 forks source link

404 error page not found on detail page on reload #21

Closed josprima-sihombing closed 6 days ago

josprima-sihombing commented 6 days ago

Step to Reproduce:

Before reload:

Screenshot 2024-11-20 at 20 50 54

After reload:

Screenshot 2024-11-20 at 20 51 31
mazipan commented 6 days ago
{
  "rewrites": [
    {
      "source": "/(.*)",
      "destination": "/index.html"
    }
  ]
}

filename=Vercel.json

Reference: https://vercel.com/docs/frameworks/vite#using-vite-to-make-spas

mazipan commented 6 days ago

I just realized the PR is also being deployed to Netlify.

https://docs.netlify.com/routing/redirects/rewrites-proxies/#history-pushstate-and-single-page-apps

Adding netlify.toml can solve the Netlify problem.

[[redirects]]
  from = "/*"
  to = "/index.html"
  status = 200