What problem does it solve? Setting up @tanstack/devtools-vite involves many interacting sub-plugins, and misconfiguration (wrong plugin order, unsupported bundlers, spread-props components) causes silent failures that are hard to diagnose. ## Core Features & Use Cases - Source Inspection Setup: Configure data-tsd-source injection, inspect hotkeys, and ignore patterns so clicking a component in the browser opens its source in your editor. - Console Piping & Enhanced Logging: Pipe client and server console output bidirectionally with source-location annotations on log calls. - Production Stripping & Event Bus: Remove devtools code from production builds and configure the WebSocket/SSE event bus port, host, and HTTPS behavior. - Use Case: You are adding TanStack Devtools to a Vite + React project and need the plugin placed first in the config, source inspection working, and devtools stripped from production builds. ## Quick Start Configure the TanStack devtools Vite plugin in my vite.config.ts with source inspection and console piping enabled.