Skip to content

Commit e679522

Browse files
Merge pull request #10 from codinit-dev/mintlify/fix-code-group-components-33708
Fix code group syntax in quickstart
2 parents 7ceb8a4 + e4aa03f commit e679522

1 file changed

Lines changed: 17 additions & 23 deletions

File tree

quickstart.mdx

Lines changed: 17 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -42,29 +42,23 @@ Step 1: Set up your development environment
4242

4343
Install dependencies using your preferred package manager:
4444

45-
<CodeGroup>
46-
<Code title="pnpm">
47-
```bash
48-
pnpm install
49-
cp .env.example .env.local
50-
pnpm run dev
51-
```
52-
</Code>
53-
<Code title="npm">
54-
```bash
55-
npm install
56-
cp .env.example .env.local
57-
npm run dev
58-
```
59-
</Code>
60-
<Code title="yarn">
61-
```bash
62-
yarn install
63-
cp .env.example .env.local
64-
yarn dev
65-
```
66-
</Code>
67-
</CodeGroup>
45+
```bash pnpm
46+
pnpm install
47+
cp .env.example .env.local
48+
pnpm run dev
49+
```
50+
51+
```bash npm
52+
npm install
53+
cp .env.example .env.local
54+
npm run dev
55+
```
56+
57+
```bash yarn
58+
yarn install
59+
cp .env.example .env.local
60+
yarn dev
61+
```
6862

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

0 commit comments

Comments
 (0)