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
16 changes: 16 additions & 0 deletions guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ $ pnpm create vite
$ bun create vite
```

```bash [Deno]
$ deno init --npm vite
```

:::

あとは画面表示に従ってください!
Expand All @@ -90,6 +94,10 @@ $ pnpm create vite my-vue-app --template vue
$ bun create vite my-vue-app --template vue
```

```bash [Deno]
$ deno init --npm vite my-vue-app --template vue
```

:::

サポートされている各テンプレートの詳細は [create-vite](https://github.com/vitejs/vite/tree/main/packages/create-vite) を参照してください: `vanilla`, `vanilla-ts`, `vue`, `vue-ts`, `react`, `react-ts`, `react-swc`, `react-swc-ts`, `preact`, `preact-ts`, `lit`, `lit-ts`, `svelte`, `svelte-ts`, `solid`, `solid-ts`, `qwik`, `qwik-ts`.
Expand Down Expand Up @@ -134,6 +142,10 @@ $ pnpm add -D vite
$ bun add -D vite
```

```bash [Deno]
$ deno add -D npm:vite
```

:::

そして、次のような `index.html` ファイルを作成します:
Expand Down Expand Up @@ -162,6 +174,10 @@ $ pnpm vite
$ bunx vite
```

```bash [Deno]
$ deno run -A npm:vite
```

:::

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