Back to Jotai

Vite

docs/guides/vite.mdx

2.19.1696 B
Original Source

You can use the plugins from the jotai-babel package to enhance your developer experience when using Vite and Jotai.

In your vite.config.ts:

js
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import jotaiDebugLabel from 'jotai-babel/plugin-debug-label'
import jotaiReactRefresh from 'jotai-babel/plugin-react-refresh'

// https://vitejs.dev/config/
export default defineConfig({
  plugins: [
    react({ babel: { plugins: [jotaiDebugLabel, jotaiReactRefresh] } }),
  ],
  // ... The rest of your configuration
})

There's a template below to try it yourself.

Examples

Vite Template

<Stackblitz id="vitejs-vite-xhhxve" file="vite.config.ts" />