Hello Astro community,
I'm facing an edge case in my development.
I have 2 paths:
/route-path-1/route-path-2
for reasons too long to explain, I cannot use the file system routing with a route-path-[id].astro syntax.
I would like to know if there is any way to have a:
route-path.astrobase fileroute-path-1.astrofile extending theroute-path.astrobase file and setting theidargument to1route-path-2.astrofile extending theroute-path.astrobase file and setting theidargument to2
I know this might be vey OOP style but my current case makes it impossible to have it differently.
I'd like to avoid :
- copy/pasting the base file into the
-1and-2files (obviously) - using symlinks instead of real files
Any suggestion/hint would be highly appreciated!