File: plugin-configuration.md | Updated: 11/15/2025
Search...
+ K
Auto
Docs Examples GitHub Contributors
Docs Examples GitHub Contributors
Docs Examples GitHub Contributors
Docs Examples Github Contributors
Docs Examples Github Contributors
Docs Examples Github Contributors
Docs Examples Github Contributors
Docs Examples Github Contributors
Maintainers Partners Support Learn StatsBETA Discord Merch Blog GitHub Ethos Brand Guide
Documentation
Framework
React
Version
Latest
Search...
+ K
Menu
Getting Started
Guides
API Reference
Examples
Framework
React
Version
Latest
Menu
Getting Started
Guides
API Reference
Examples
On this page
Copy Markdown
Plugin Configuration
====================
You can configure TanStack Devtools plugins by passing them as an array to the plugins prop of the TanStackDevtools component.
Each plugin can have the following configuration options:
Here's an example of how to configure plugins in the TanStackDevtools component:
tsx
import { TanStackDevtools } from '@tanstack/react-devtools'
import { FormDevtools } from '@tanstack/react-form-devtools'
function App() {
return (
<>
<YourApp />
<TanStackDevtools
plugins={[\
{ \
name: 'TanStack Form',\
render: <FormDevtools />,\
defaultOpen: true,\
},\
]}
/>
</>
)
}
import { TanStackDevtools } from '@tanstack/react-devtools'
import { FormDevtools } from '@tanstack/react-form-devtools'
function App() {
return (
<>
<YourApp />
<TanStackDevtools
plugins={[\
{ \
name: 'TanStack Form',\
render: <FormDevtools />,\
defaultOpen: true,\
},\
]}
/>
</>
)
}
You can set a plugin to be open by default by setting the defaultOpen property to true when configuring the plugin. This will make the plugin panel open when the devtools are first loaded.
If you only have 1 plugin it will automatically be opened regardless of the defaultOpen setting.
The limit to open plugins is at 3 panels at a time. If more than 3 plugins are set to defaultOpen: true, only the first 3 will be opened.
This does not override the settings saved in localStorage. If you have previously opened the plugin panel, and selected some plugins to be open or closed, those settings will take precedence over the defaultOpen setting.