Replies: 2 comments 10 replies
-
I'm pretty sure that using |
Beta Was this translation helpful? Give feedback.
-
If I read this correctly, you're essentially looking to use waku in a MPA mode. This would make it so that no client router is shipped at all. This is very possible, but we do not yet have an example for this that I know of yet. You'd need to replace the default routing with entries.tsx We can look to make an example soon for this, but please feel free to try it out yourself if you're up for it. And if this is what you were looking for as well haha. |
Beta Was this translation helpful? Give feedback.
-
Is there a way to completely disable all client-side routing features?
The file-based router makes sense for generating the actual
.html
pages (during SSR/SSG), but I find the<Link>
component and the RSC client cache largely undesirable. I want to do a "hard" navigation each time.I realize I can just use
<a>
instead of<Link>
but that wouldn't disable the RSC cache, would it? I'm also not sure if there are any other routing features that Waku enables by default.Beta Was this translation helpful? Give feedback.
All reactions