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

With default Next.js routing that it's based on the file system, we can create nested pages like this: ``` pages ├── index.js => / ├── about.js => /about └── auth...

I am developing tag tracking system on NextJS and my application URL need to receive parameter as tag name that contains % and # characters. For example, "C#", "100%" etc....

## The dependency [path-to-regexp](https://github.com/pillarjs/path-to-regexp) was updated from `2.4.0` to `3.0.0`. This version is **not covered** by your **current version range**. If you don’t accept this pull request, your project will...

greenkeeper

## Version **6.0.0** of [@types/next](https://github.com/DefinitelyTyped/DefinitelyTyped) was just published. Dependency @types/next Current Version 2.4.12 Type devDependency The version **6.0.0** is **not covered** by your **current version range**. If you don’t accept...

greenkeeper

I'm having trouble finding any information about how to implement HTTP2 while also still using Next Routes. Next Routes is an absolute lifesaver and has cut down the amount of...

Hi! Thanks a million for this amazing project. Following #142 and #53 there is an urgent need to fix `Object.assign`, this needs at least to be polyfilled ASAP https://github.com/fridays/next-routes/blob/08e8bbeaa76c5ec194abea388a193bedac7f35fc/src/index.js#L96 This...

`.add({name: 'about', pattern: '/about', page: 'about'})` ~ pages access from `page` directory `page/about.js`. but I want page will be access from `module` directory `module/about.js`. `page` directory will work as before.

I want to show a different page on the same route(`/login`) for mobile and desktop based on the userAgent. In my pages folder, I have two different page components `login`...

I have a `Nextjs` app where I'm using `next-routes` for route handling. Below is the snippet of my app routes `(routes.js)` ``` const routes = require('next-routes') module.exports = routes() .add('home-page',...