We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdefbf8 commit 4e57564Copy full SHA for 4e57564
guide/index.md
@@ -142,12 +142,28 @@ $ bun add -D vite
142
<p>Hello Vite!</p>
143
```
144
145
-次に、`vite` CLI をターミナルで実行します:
+次に、適切な CLI コマンドをターミナルで実行します:
146
147
-```bash
148
-vite
+::: code-group
+
149
+```bash [NPM]
150
+$ npx vite
151
152
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
167
`index.html` は `http://localhost:5173` で配信されます。
168
169
## `index.html` とプロジェクトルート {#index-html-and-project-root}
0 commit comments