Thank you for working on this fantastic project!
I am using turborepo to manage my project as a monorepo. In my setup, most of the logic and components are separated into individual packages, with the next.js app serving mostly as a shell.
The problem arises with the automatically generated routes/index.ts that references page.info. If I set the path of routes to the next.js app package, it becomes inaccessible to external packages. On the other hand, if I set it to an external package, it cannot reference the page.info file in the next.js app.
Do you have any good ideas on how to solve this issue?