solid-router icon indicating copy to clipboard operation
solid-router copied to clipboard

A universal router for Solid inspired by Ember and React Router

Results 110 solid-router issues
Sort by recently updated
recently updated
newest added

### Describe the bug ```ts const TAG_PATH = '/tags/:label/:entryId?' ... const isMatch = useMatch(() =>TAG_PATH) ``` Here `useMatch(() =>TAG_PATH)` can match path with 'entryId' param like '/tags/1/2', but can not...

### Describe the bug Even inside navigation('url', { replace: false }) is by default the history is replaced and when clicking back the url doesn't change and after that goes...

### Duplicates - [X] I have searched the existing issues ### Latest version - [X] I have tested the latest version ### Current behavior 😯 When trying to receive the...

bug

### Duplicates - [X] I have searched the existing issues ### Latest version - [X] I have tested the latest version ### Current behavior 😯 I have created a basic...

bug

### Describe the bug May be related to [#374](https://github.com/solidjs/solid-router/issues/374) When the function that is passed to the routes load() function throws an error or rejected promise, the error will be...

### Describe the bug Changing pages takes way too much time on iOS and even on desktop if the app is a bit demanding like when it has a background...

### Describe the bug i open this as an issue because i cant open a feature request, it will be nice that we can add support of a sitemap generator...

enhancement

Seems like `handleAnchor` errors when the link is a `blob`, like in the solid playground https://playground.solidjs.com/anonymous/778914e0-e4ea-4292-90e4-236336d33e61

Context: I am building a SolidStart app which will be embedded into other non-Solid-based apps by simply injecting the html+scripts of the SolidStart app at runtime. Once an initial URL...

## The problem With current design of the `A` component classes, there is one shortcoming: An `A` component can be in one of three states: `inactive`, `active` and `exactActive`. But...