You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When deploying applications that use a client side router that does not rely on Server Side Rendering you need to handle redirects to your index page so that loading from other URLs does not cause your CDN or Hosting to return not found for pages that aren't actually there.
698
+
699
+
Each provider has a different way of doing this. For example on Netlify you create a `_redirects` file that contains:
700
+
701
+
```sh
702
+
/* /index.html 200
703
+
```
704
+
705
+
On Vercel you add a rewrites section to your `vercel.json`:
0 commit comments