Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 770 Bytes

vite.mdx

File metadata and controls

32 lines (24 loc) · 770 Bytes
title description nav
Vite
How to use Jotai with Vite
3.09

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

In your vite.config.ts:

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