Skip to content

Commit 4e57564

Browse files
authored
docs: edit Manual Install instructions on docs guide page (#1542)
resolve #1541 vitejs/vite@2adc5aa の反映です。
1 parent fdefbf8 commit 4e57564

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

guide/index.md

+19-3
Original file line numberDiff line numberDiff line change
@@ -142,12 +142,28 @@ $ bun add -D vite
142142
<p>Hello Vite!</p>
143143
```
144144

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

147-
```bash
148-
vite
147+
::: code-group
148+
149+
```bash [NPM]
150+
$ npx vite
149151
```
150152

153+
```bash [Yarn]
154+
$ yarn vite
155+
```
156+
157+
```bash [PNPM]
158+
$ pnpm vite
159+
```
160+
161+
```bash [Bun]
162+
$ bunx vite
163+
```
164+
165+
:::
166+
151167
`index.html``http://localhost:5173` で配信されます。
152168

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

0 commit comments

Comments
 (0)