When running pnpm create nuxt from a workspace root, module dependencies (e.g., better-sqlite3 for @nuxt/content) are installed to workspace root instead of the project directory, causing pnpm error and requiring manual cd + install.
Steps to reproduce:
- Run
pnpm create nuxt from workspace root
- Select
@nuxt/content module
- When prompted to install
better-sqlite3, it installs to workspace root
- Error: "Running this command will add the dependency to the workspace root, ..."
Expected: All dependencies should install in the created project directory.