Skip to content

Commit

Permalink
docs(installation): updated the yarn installation command
Browse files Browse the repository at this point in the history
There is no `-g` flag in yarn. `global` is a command which must immediately follow yarn. 

Source: https://classic.yarnpkg.com/lang/en/docs/cli/global/
  • Loading branch information
AzpektDev authored Nov 21, 2024
1 parent 34bb098 commit c38a0c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/docs/content/docs/guide/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Execute one of the following commands in your terminal:
<PackageManagers
commands={{
npm: "npm install -g nextui-cli",
yarn: "yarn add -g nextui-cli",
yarn: "yarn global add nextui-cli",
pnpm: "pnpm add -g nextui-cli",
bun: "bun add -g nextui-cli",
}}
Expand Down

0 comments on commit c38a0c3

Please sign in to comment.