Hello, I've been using SSR for a project lately, and I've had trouble understanding how multiple routes can coexist in the same folder.
Basically I have the following tree structure
articles/
-> [page].astro (which directs to an "all articles" page with pagination)
-> [...slug].astro (which directs to an article)
And basically, the issue I have is, how do I tell my renderer to match with page or slug ? How does Astro which .astro file to pick ? Is there a way inside [page].astro to write a matcher so that if params.page is not a number, then the request should be passed to [...slug].astro ?
Thanks