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 docs/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
```

:::

Folgen Sie dann den Anweisungen.
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
```

:::

Siehe [create-vite](https://github.com/vitejs/vite/tree/main/packages/create-vite) für weitere Details zu jeder unterstützten Vorlage: `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
```

:::

Und eine `index.html` Datei wie folgt erstellen:
Expand Down Expand Up @@ -162,6 +174,10 @@ $ pnpm vite
$ bunx vite
```

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

:::

Die `index.html` wird auf `http://localhost:5173` bereitgestellt.
Expand Down