Is there a way to include and exclude pages from the build? I'm aware of https://docs.astro.build/en/core-concepts/routing/#excluding-pages, but that doesn't meet my needs. I want to have two builds, each of which would process different folders under src/pages. So the pages from the first build would be excluded from the second build and vice versa. (Why do I want to do this? To work around this bug: https://github.com/withastro/astro/issues/6247)
The only way I'm seeing of doing this is to move the second set of pages to a folder other than src and invoking the second build with the srcDir option (https://docs.astro.build/en/reference/configuration-reference/#srcdir). I'd rather not move a bunch of files around.