next-routes icon indicating copy to clipboard operation
next-routes copied to clipboard

Universal dynamic routes for Next.js

Results 101 next-routes issues
Sort by recently updated
recently updated
newest added

The following method are not exported with the type definitions ``` class Routes { findByName (name) match (url) findAndGetUrls (nameOrUrl, params) getLink (Link) getRouter (Router) } ```

Hi! Are there any way of generate programmaticaly based on route name? I've noticed that component don't render a element , and for some seo constraints i need render it...

Hi, I am not sure if next-routes is the good solution for me, but I am building an web that will be localised in 10+ languages (each language on dedicated...

Just tested this. If I add `.add('redirect', '/test-route/:queryparams')` to routes, links like: http://localhost/test-route?queryparams=param work, if I put `.add('test-route', '/test-route/:queryparams', 'test-other-route')` the link above leads to a 404. Only links like:...

Not sure if this is bug or support request. I can't seem to catch 'š' character with routes. So path like /tsitaadid/autorid/š doesn't match the rule. Whatever I try in...

By default if i18n library is used without next-routes, no matter what language is used, I mean URLs have prefix, e.g. http://localhost:8080/some-path or http://localhost:8080/de/some-path. In this case static content is...

I have a different base URL for the Next JS app. I have a in inside the app. Which specifies all the api calls and link routes to act according...

Hello I usually use a folder called "src" for all the components, containers and pages of react.js, in this case I set up next.js so that it does not look...

My routes are like this: ``` // routes.js module.exports = routes() .add("about") .add("city", "city/:city", "city") ``` My server is running on port `5010` and dev server is running on `5000`....

When I can't specify additional values and send them to custom handlers. Then I add the metadata into the constuctor to specify the value of what will be added to...