Closed NoMan2000 closed 1 year 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:
next-routes
/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.
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.