From 7e2873121e1da60bf4442c47df219ae1dcc7dbd6 Mon Sep 17 00:00:00 2001 From: Santos Vilanculos Date: Wed, 8 Apr 2026 03:30:21 +0200 Subject: [PATCH] chore(plugin): add inertia 3 plugin --- .changeset/wild-papayas-judge.md | 5 +++++ packages/devtools/src/tabs/plugin-registry.ts | 21 +++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 .changeset/wild-papayas-judge.md diff --git a/.changeset/wild-papayas-judge.md b/.changeset/wild-papayas-judge.md new file mode 100644 index 00000000..3a8740cc --- /dev/null +++ b/.changeset/wild-papayas-judge.md @@ -0,0 +1,5 @@ +--- +'@tanstack/devtools': patch +--- + +Add inertia 3 devtool to registry diff --git a/packages/devtools/src/tabs/plugin-registry.ts b/packages/devtools/src/tabs/plugin-registry.ts index 0b0afa39..58795db1 100644 --- a/packages/devtools/src/tabs/plugin-registry.ts +++ b/packages/devtools/src/tabs/plugin-registry.ts @@ -259,6 +259,27 @@ const PLUGIN_REGISTRY: Record = { isNew: true, tags: ['Router', 'Prefetch', 'Analytics', 'Overlay', 'TanStack'], }, + + // Santos Vilanculos — Inertia 3 Devtools for React + '@santosvilanculos/bevor-react': { + packageName: '@santosvilanculos/bevor-react', + title: 'Inertia 3 Devtools', + description: 'Inertia 3 devtools built on top of TanStack DevTools', + pluginImport: { + importName: 'inertiaDevtoolsPlugin', + type: 'function', + }, + pluginId: 'inertia-devtools', + logoUrl: + 'https://raw.githubusercontent.com/santosvilanculos/bevor/main/logo.png', + docsUrl: + 'https://github.com/SantosVilanculos/bevor/tree/main/packages/react', + repoUrl: 'https://github.com/SantosVilanculos/bevor', + author: 'Santos Vilanculos (santosvilanculos@yahoo.com)', + framework: 'react', + isNew: true, + tags: ['TanStack', 'React', 'Inertia', 'Laravel'], + }, } /**