Skip to content

Commit

Permalink
docs: edit Manual Install instructions on docs guide page (#1542)
Browse files Browse the repository at this point in the history
resolve #1541

vitejs/vite@2adc5aa の反映です。
  • Loading branch information
shuuji3 authored Sep 10, 2024
1 parent fdefbf8 commit 4e57564
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,12 +142,28 @@ $ bun add -D vite
<p>Hello Vite!</p>
```

次に、`vite` CLI をターミナルで実行します:
次に、適切な CLI コマンドをターミナルで実行します:

```bash
vite
::: code-group

```bash [NPM]
$ npx vite
```

```bash [Yarn]
$ yarn vite
```

```bash [PNPM]
$ pnpm vite
```

```bash [Bun]
$ bunx vite
```

:::

`index.html``http://localhost:5173` で配信されます。

## `index.html` とプロジェクトルート {#index-html-and-project-root}
Expand Down

0 comments on commit 4e57564

Please sign in to comment.