Enhanced the documentation pages by updating the layout with aesthetic adjustments and adding better navigation elements. New documentation content was added: 'Authentication', 'Getting Started', and their child pages. This ensures users have a clearer path when viewing, navigating, and accessing the information they need. "Read more" fallback label was added to the documentation cards for better accessibility.
21 lines
488 B
Plaintext
21 lines
488 B
Plaintext
---
|
|
title: "Installing Dependencies"
|
|
description: "Learn how to install dependencies for your project."
|
|
publishedAt: 2024-04-11
|
|
parent: "getting-started/getting-started"
|
|
order: 0
|
|
---
|
|
|
|
To install dependencies in your project, please install `pnpm` by running the following command:
|
|
|
|
```bash
|
|
npm install -g pnpm
|
|
```
|
|
|
|
Next, navigate to your project directory and run the following command:
|
|
|
|
```bash
|
|
pnpm install
|
|
```
|
|
|
|
This will install all the dependencies listed in your `package.json` file. |