---
name: devtools-app-setup
description: >
Install TanStack Devtools, pick framework adapter (React/Vue/Solid/Preact),
register plugins via plugins prop, configure shell (position, hotkeys, theme,
hideUntilHover, requireUrlFlag, eventBusConfig). TanStackDevtools component,
defaultOpen, localStorage persistence.
type: core
library: '@tanstack/devtools'
library_version: '0.10.12'
sources:
- docs/quick-start.md
- docs/installation.md
- docs/configuration.md
- docs/overview.md
- packages/devtools/src/context/devtools-store.ts
- packages/vue-devtools/src/types.ts
- packages/react-devtools/src/devtools.tsx
---
# TanStack Devtools App Setup
## Setup
### React (primary)
Install as dev dependencies:
```bash
npm install -D @tanstack/react-devtools @tanstack/devtools-vite
```
Mount `TanStackDevtools` at the root of your application:
```tsx
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import { TanStackDevtools } from '@tanstack/react-devtools'
import App from './App'
createRoot(document.getElementById('root')!).render(
,
)
```
Add plugins via the `plugins` prop. Each plugin needs `name` (string) and `render` (JSX element or render function):
```tsx
import { TanStackDevtools } from '@tanstack/react-devtools'
import { ReactQueryDevtoolsPanel } from '@tanstack/react-query-devtools'
import { TanStackRouterDevtoolsPanel } from '@tanstack/react-router-devtools'
;,
},
{
name: 'TanStack Router',
render: ,
},
]}
/>
```
### Vue
```bash
npm install -D @tanstack/vue-devtools
```
Vue uses `component` (not `render`) in plugin definitions. This is the `TanStackDevtoolsVuePlugin` type:
```vue
```
The Vite plugin (`@tanstack/devtools-vite`) is optional for Vue but recommended for enhanced console logs and go-to-source.
### Solid
```bash
npm install -D @tanstack/solid-devtools @tanstack/devtools-vite
```
```tsx
import { render } from 'solid-js/web'
import { TanStackDevtools } from '@tanstack/solid-devtools'
import { SolidQueryDevtoolsPanel } from '@tanstack/solid-query-devtools'
import App from './App'
render(
() => (
<>
,
},
]}
/>
>
),
document.getElementById('root')!,
)
```
### Preact
```bash
npm install -D @tanstack/preact-devtools @tanstack/devtools-vite
```
```tsx
import { render } from 'preact'
import { TanStackDevtools } from '@tanstack/preact-devtools'
import App from './App'
render(
<>
,
},
]}
/>
>,
document.getElementById('root')!,
)
```
## Core Patterns
### Shell Configuration
Pass a `config` prop to `TanStackDevtools` to set initial shell behavior. These values are persisted to `localStorage` after first load and can be changed through the settings panel at runtime.
Storage keys used internally:
- `tanstack_devtools_settings` -- persisted settings
- `tanstack_devtools_state` -- persisted UI state (active tab, panel height, active plugins, persistOpen)
All config properties are optional. Defaults shown below:
```tsx
```
### Event Bus Configuration
The `eventBusConfig` prop configures the client-side event bus that plugins use for communication:
```tsx
```
The server event bus requires the `@tanstack/devtools-vite` plugin to be running.
### Plugin Registration with defaultOpen
Each plugin entry can include a `defaultOpen` flag to control whether that plugin tab is active when devtools first opens:
```tsx
import { TanStackDevtools } from '@tanstack/react-devtools'
import { FormDevtools } from '@tanstack/react-form'
;,
defaultOpen: true,
},
]}
/>
```
### Conditional Devtools with URL Flag
Use `requireUrlFlag` to hide devtools unless a specific URL parameter is present. This is useful for staging environments or team-internal debugging:
```tsx
```
## Common Mistakes
### CRITICAL: Vue plugin uses `render` instead of `component`
The Vue adapter uses `component` (a Vue component reference) and optional `props`, not JSX `render`. Using `render` produces a silent failure -- the plugin tab appears but renders nothing.
Wrong:
```vue
```
Correct:
```vue
```
The `TanStackDevtoolsVuePlugin` type enforces this at compile time. Always import and use it.
### HIGH: Vite plugin not placed first in plugins array
The `@tanstack/devtools-vite` plugin performs source injection that must run before framework plugins (React, Vue, Solid, etc.) process the code.
Wrong:
```ts
import { devtools } from '@tanstack/devtools-vite'
import react from '@vitejs/plugin-react'
export default {
plugins: [react(), devtools()],
}
```
Correct:
```ts
import { devtools } from '@tanstack/devtools-vite'
import react from '@vitejs/plugin-react'
export default {
plugins: [devtools(), react()],
}
```
### HIGH: Mounting TanStackDevtools in SSR without client guard
The devtools core shell requires DOM APIs (`document`, `window`, `localStorage`). The React adapter includes `'use client'` at its entry point, so standard Next.js/Remix setups work. However, custom SSR setups or frameworks that do not respect the `'use client'` directive need explicit guards.
Wrong:
```tsx
// In a server-rendered component without framework 'use client' support
import { TanStackDevtools } from '@tanstack/react-devtools'
export default function Layout({ children }) {
return (
<>
{children}
>
)
}
```
Correct:
```tsx
import { TanStackDevtools } from '@tanstack/react-devtools'
export default function Layout({ children }) {
return (
<>
{children}
{typeof window !== 'undefined' && }
>
)
}
```
Or use dynamic imports / lazy loading to ensure the component only loads on the client.
### MEDIUM: Installing as regular dependency for dev-only use
When using the Vite plugin for production stripping, devtools packages should be dev dependencies. Installing them as regular dependencies increases production bundle size unnecessarily.
Wrong:
```bash
npm install @tanstack/react-devtools
```
Correct:
```bash
npm install -D @tanstack/react-devtools
npm install -D @tanstack/devtools-vite
```
Exception: if you intentionally want devtools in production, install `@tanstack/devtools` (core) as a regular dependency. See the production skill for details.
### MEDIUM: Not keeping devtools packages at latest versions
All `@tanstack/devtools-*` packages share internal protocols (event bus messages, plugin mount lifecycle). Mixing versions can cause silent failures where plugins register but never receive events, or the shell mounts but plugins do not render.
Always update all devtools packages together:
```bash
npm install -D @tanstack/react-devtools@latest @tanstack/devtools-vite@latest
```
When building custom plugins, ensure `@tanstack/devtools-event-client` matches the version of `@tanstack/devtools` used by the shell.
## See Also
- **devtools-vite-plugin** -- Vite plugin configuration: source inspection, console piping, production stripping, server event bus setup
- **devtools-production** -- Production build handling: keeping devtools in prod, tree-shaking, URL flag gating
- **devtools-plugin-panel** -- Building custom plugin panels with the EventClient API