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

I just got the following issues when making a simple link. when removing the link the error will disappear: ``` Element type is invalid: expected a string (for built-in components)...

[Since `this.props.url` is deprecated](https://github.com/zeit/next.js/blob/canary/errors/url-deprecated.md), we can no longer access the route's name through the props of the component. If you append the name of the current route through `server.js`, it...

Hello! I'm running latest next version with a typescript environment with a simple next-routes config, but I'm stucked with a problem. ### What's the problem? I'm running the project, and...

There is a route like below ``` add('/action/:param', 'action') ``` I only want a user enter action page with params, and other urls such as `/action` or `/action/` lead them...

## The devDependency [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped) was updated from `10.11.0` to `10.11.1`. 🚨 [View failing branch](https://github.com/fridays/next-routes/compare/master...fridays:greenkeeper%2F%40types%2Fnode-10.11.1). This version is **covered** by your **current version range** and after updating it in your project...

greenkeeper

Hi. Thanks for the awesome library. The type definition looks outdated so I fixed it.

There appears to be a breaking change in the current canary branch of next.js that needs to be discussed / addressed here. Custom servers no longer boot up when using...

We are using assetPrefix and have next setup to serve on a sub-folder. On initial load our pages router object has: asPath:"/prefix-dir/Homepage/[old param name]" pathname and route are both "/homepage"...

The TypeScript types were using an incorrect API where the default export was an instance of the class `Routes`. Now the default export is a function that returns a `new...