mirror of
https://github.com/langgenius/dify.git
synced 2026-03-12 18:48:53 +08:00
Co-authored-by: Stephen Zhou <hi@hyoban.cc> Co-authored-by: Stephen Zhou <38493346+hyoban@users.noreply.github.com> Co-authored-by: yyh <92089059+lyzno1@users.noreply.github.com>
28 lines
623 B
TypeScript
28 lines
623 B
TypeScript
'use client'
|
|
|
|
import { TanStackDevtools } from '@tanstack/react-devtools'
|
|
import { formDevtoolsPlugin } from '@tanstack/react-form-devtools'
|
|
|
|
import { ReactQueryDevtoolsPanel } from '@tanstack/react-query-devtools'
|
|
import { IS_DEV } from '@/config'
|
|
|
|
export const TanStackDevtoolsLoader = () => {
|
|
if (!IS_DEV)
|
|
return null
|
|
|
|
return (
|
|
<TanStackDevtools
|
|
plugins={[
|
|
// Query Devtools (Official Plugin)
|
|
{
|
|
name: 'React Query',
|
|
render: () => <ReactQueryDevtoolsPanel />,
|
|
},
|
|
|
|
// Form Devtools (Official Plugin)
|
|
formDevtoolsPlugin(),
|
|
]}
|
|
/>
|
|
)
|
|
}
|