Hey, I have the following folder structure:
app -> page -> dashboard -> page.js
app -> page -> layout.js
app -> page -> setup -> page.js
Now I would like to that the setup route does not have the layout.js. The dashboard should have the layout.js. I tried it by create another layout.js in app -> page -> setup -> layout.js but that will be wrapped by the other layout.js as child. So I can't use that. How can I disable the layout for specific routes? Route groups doesn't work for me in this case.