bug description
When a param contains a dot (.), Routify returns 404.
steps to reproduce
- Create a route with a dynamic param, for example:
/ex/[id].svelte.
- Navigate to
/ex/abc - should be working as expected
- Navigate to
/ex/abc.de - returns 404.
note
Not necessarily related but the same works in SvelteKit
version
Routify 2.18.8
screenshot
<script>
import { params } from "@roxi/routify"
</script>
<h1>HELLO</h1>
<p>
param: {$params?.id}
</p>


bug description
When a param contains a dot (
.), Routify returns 404.steps to reproduce
/ex/[id].svelte./ex/abc- should be working as expected/ex/abc.de- returns404.note
Not necessarily related but the same works in SvelteKit
version
Routify 2.18.8
screenshot