Single devtools for tanstack query/router/etc... ? #7737
Answered
by
andreeasteriu
yann-combarnous
asked this question in
Ideas
-
|
Right now, when using Tanstack router and Tanstack query, devtools don't really play well together. What would be nice is a common devtools icon and a tab-based container for each Tanstack module: router, query, etc... |
Beta Was this translation helpful? Give feedback.
Answered by
andreeasteriu
Feb 17, 2026
Replies: 2 comments
-
|
I would also very much prefer a browser extension based tanstack extension that can bundle all of them |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
You can now use TanStackDevtools from @tanstack/react-devtools and configure it in the following way: <TanStackDevtools
config={{
position: 'bottom-right',
}}
plugins={[
{
name: 'Tanstack Router',
render: <TanStackRouterDevtoolsPanel />,
},
{
name: 'React Query',
render: <ReactQueryDevtoolsPanel />,
},
formDevtoolsPlugin(),
]}
/> |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
TkDodo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can now use TanStackDevtools from @tanstack/react-devtools and configure it in the following way: