Replies: 2 comments 2 replies
-
You need to create a route The #7111 proposal should help solve this if it ever gets implemented. |
Beta Was this translation helpful? Give feedback.
2 replies
-
This doesn't seem possible in react-router because each dynamic segment cannot be split 👉 https://reactrouter.com/en/main/route/route#dynamic-segments |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
👋 hello
We've been working on and off with remix for a while now, almost finishing up a big project, it's been really nice working with remix and seeing the progress the remix team and community took, hats off 👏
We have pages that end with a
~pageId
, it's a pattern used so the url could change at any time, because of new content, corrections, developing stories,... the suffix of~pageId
ensures the server can resolve this url to the correct page.At the moment we cannot target this route specifically because special character delimiters don't work with splats.
A feature that would help split some more chunks into smaller ones would be to support special character delimiters like so
$path[~]$articleId
=>/some-article-title~articleId
This would mean we can extract the logic for these types of page away from the default splat
$.tsx
and also provide dedicated outlets.Resources
Beta Was this translation helpful? Give feedback.
All reactions