Is it possible to have the same route be on different layout groups in SvelteKit. I want to have two different layout groups "/(private)/(app)" and "/(public)/(landing)" that define the routes for my authenticated and not authenticated pages. Normally I can do this in NGINX by making an auth subrequest. But in SvelteKit I get the following error:
The "/(private)/(app)" and "/(public)/(landing)" routes conflict with each other
Can we define this in the hooks.server.ts file or maybe the root layout.server.ts?