Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 17 additions & 23 deletions quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,29 +42,23 @@ Step 1: Set up your development environment

Install dependencies using your preferred package manager:

<CodeGroup>
<Code title="pnpm">
```bash
pnpm install
cp .env.example .env.local
pnpm run dev
```
</Code>
<Code title="npm">
```bash
npm install
cp .env.example .env.local
npm run dev
```
</Code>
<Code title="yarn">
```bash
yarn install
cp .env.example .env.local
yarn dev
```
</Code>
</CodeGroup>
```bash pnpm
pnpm install
cp .env.example .env.local
pnpm run dev
```

```bash npm
npm install
cp .env.example .env.local
npm run dev
```

```bash yarn
yarn install
cp .env.example .env.local
yarn dev
```

<Tip>Both versions offer Different features - choose based on your preference for native or web applications.</Tip>
</Accordion>
Expand Down