Replies: 1 comment
-
How to install the project with pnpm can also be seen on the get started page when selecting pnpm option |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When you use pnpm as package management, if you use
pnpm install
to install dependencies. The following error may appear.At this time node_modules structure is as follows:
This leads to
Failed to resolve dependency
, Can be usedpnpm install --shamefully-hoist
to create a flat node_modules directory structure, similar to npm or yarn. This can effectively solve the above problems.Beta Was this translation helpful? Give feedback.
All reactions