TanStack Vite plugin used to enhance the core devtools with additional functionalities
npm install @tanstack/devtools-viteThis package is still under active development and might have breaking changes in the future. Please use it with caution.
The @tanstack/devtools-vite package is designed to work with Vite projects.
Plug it into your plugins array:
``ts
import { devtools } from '@tanstack/devtools-vite'
export default {
plugins: [
// Important to include it first!
devtools(),
... //rest of the plugins
],
}
``