-
Notifications
You must be signed in to change notification settings - Fork 84
$param containing dot (".") results in 404 #490
Copy link
Copy link
Open
Labels
Description
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- returns404.
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>
Reactions are currently unavailable

