Hi, I have currently deployed a monorepo to Netify and have configured my root directory with the following netlify.toml (as recommended in the docs):
[build]
base = "packages/frontend/"
However, when I run netlify dev
in the root of my monorepo project, netlify doesn’t use the correct base directory to start my project. Is there any way to make netlify dev
understand the location of the package I want to use in my monorepo? For example like this:
[build]
base = "packages/frontend/"
[dev]
base = "packages/frontend/"
Right now I have to run netlify dev after cd
ing into the correct package.