fridays / next-routes

Universal dynamic routes for Next.js
MIT License
2.47k stars 230 forks source link

Doc on migrating from React Router? (Example) #160

Closed NoMan2000 closed 1 year ago

NoMan2000 commented 6 years ago

I migrated all of my routes over from React-Router. They were in this general format.

/favorites/SS(:series)/SN(:season)/EP(:id)

But next-routes didn't pick them up and I'd get a 404 page. Next routes expects this form:

/favorites/SS:series/SN:season/EP:id

Which then sent me to the correct page. Maybe a quick doc or addition to the readme on migrating routes over and any gotchas like this would be nice.