From 11ef9410ae4cea08c0cdde0a432e631a8f00aecf Mon Sep 17 00:00:00 2001 From: Danny Date: Wed, 18 Mar 2026 09:14:11 -0500 Subject: [PATCH 1/2] Update installation command for devtools to dev dependency --- docs/quick-start.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quick-start.md b/docs/quick-start.md index 016c430b..dc96ae2f 100644 --- a/docs/quick-start.md +++ b/docs/quick-start.md @@ -10,7 +10,7 @@ TanStack Devtools is a framework-agnostic devtool for managing and debugging dev Install the devtools and the Vite plugin: ```bash -npm install @tanstack/react-devtools @tanstack/devtools-vite +npm install -D @tanstack/react-devtools @tanstack/devtools-vite ``` Add the `TanStackDevtools` component to the root of your application: From 43e30f4b138b941a9e74780cd4d051683eef2772 Mon Sep 17 00:00:00 2001 From: Danny Date: Wed, 18 Mar 2026 09:18:59 -0500 Subject: [PATCH 2/2] docs: add -D flag to other frameworks install commands --- docs/quick-start.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/quick-start.md b/docs/quick-start.md index dc96ae2f..6ef90ad7 100644 --- a/docs/quick-start.md +++ b/docs/quick-start.md @@ -65,7 +65,7 @@ createRoot(document.getElementById('root')!).render( Install the devtools and the Vite plugin: ```bash -npm install @tanstack/preact-devtools @tanstack/devtools-vite +npm install -D @tanstack/preact-devtools @tanstack/devtools-vite ``` Add the `TanStackDevtools` component using Preact's `render()` function: @@ -114,7 +114,7 @@ render( Install the devtools and the Vite plugin: ```bash -npm install @tanstack/solid-devtools @tanstack/devtools-vite +npm install -D @tanstack/solid-devtools @tanstack/devtools-vite ``` Add the `TanStackDevtools` component using Solid's `render(() => ...)` pattern: @@ -167,7 +167,7 @@ render(() => ( Install the Vue devtools adapter: ```bash -npm install @tanstack/vue-devtools +npm install -D @tanstack/vue-devtools ``` > The Vite plugin (`@tanstack/devtools-vite`) is optional for Vue but recommended if you want features like enhanced console logs and go-to-source.