-
We are considering to move our application to remix from NextJs. We are using url rewrite for a couple of features like:
There is a way to support those use cases in remix? |
Beta Was this translation helpful? Give feedback.
Answered by
sergiodxa
Feb 23, 2022
Replies: 1 comment
-
The first one can be setup with a resource route or a proxy in your server (outside Remix), for example in Express or using Vercel rewrites. The second one can be setup using the remix.config.js routes function to define custom routes outside the app/routes file system based router. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
machour
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The first one can be setup with a resource route or a proxy in your server (outside Remix), for example in Express or using Vercel rewrites.
The second one can be setup using the remix.config.js routes function to define custom routes outside the app/routes file system based router.