Using fs-routes without the Vite plugin #12877
-
I was wondering if I can use the fs-routes package without the Vite plugin. Something like this: https://tanstack.com/router/latest/docs/framework/react/quick-start#using-file-based-route-generation The react-router Vite plugin currently requires a Is it a possibility or am I out of luck with this config setup? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Beta Was this translation helpful? Give feedback.
-
@edwjusti without using the Vite plugin (aka framework mode) you would have to create your own system for doing file based routing However, you can use SPA Mode which will generate an
I'd love to know what you feel you're limited on. You should have full control over the generated HTML |
Beta Was this translation helpful? Give feedback.
@edwjusti without using the Vite plugin (aka framework mode) you would have to create your own system for doing file based routing
However, you can use SPA Mode which will generate an
index.html
file from yourroot.tsx
. If you do that, then file-based routingI'd love to know what you feel you're limited on. You should have full control over the generated HTML