I want to render child
route with child layout only, without inheriting root layout.
/routes/+layout.svelte
/routes/child/+layout.svelte
/routes/child/+page.svelte
I tried child/+layout@.svelte
to break inheritance, but with no luck. I don't want to use layout groups or if-else statements in parent layouts.
Is there option to break parent inheritance in elegant way?