Skip to content
Open
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
8 changes: 4 additions & 4 deletions docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ TanStack Devtools is a framework-agnostic devtool for managing and debugging dev
Install the devtools and the Vite plugin:

```bash
npm install @tanstack/react-devtools @tanstack/devtools-vite
npm install -D @tanstack/react-devtools @tanstack/devtools-vite
```

Add the `TanStackDevtools` component to the root of your application:
Expand Down Expand Up @@ -65,7 +65,7 @@ createRoot(document.getElementById('root')!).render(
Install the devtools and the Vite plugin:

```bash
npm install @tanstack/preact-devtools @tanstack/devtools-vite
npm install -D @tanstack/preact-devtools @tanstack/devtools-vite
```

Add the `TanStackDevtools` component using Preact's `render()` function:
Expand Down Expand Up @@ -114,7 +114,7 @@ render(
Install the devtools and the Vite plugin:

```bash
npm install @tanstack/solid-devtools @tanstack/devtools-vite
npm install -D @tanstack/solid-devtools @tanstack/devtools-vite
```

Add the `TanStackDevtools` component using Solid's `render(() => ...)` pattern:
Expand Down Expand Up @@ -167,7 +167,7 @@ render(() => (
Install the Vue devtools adapter:

```bash
npm install @tanstack/vue-devtools
npm install -D @tanstack/vue-devtools
```

> The Vite plugin (`@tanstack/devtools-vite`) is optional for Vue but recommended if you want features like enhanced console logs and go-to-source.
Expand Down