Is there a way to omit one level from the url slugs in Next.js i.e.;
I would like to have the following:
Folder structure: features => [id] => [id] (features/[id]/[id])
Actual url: to skip the features/ and have only ([id]/[id]).
I know I could create just [id]/[id] but then this would get messy if I have more url that are not features related.
Please advise, thanks