storybook/code/vite.config.ts
2022-10-11 23:49:24 +02:00

10 lines
374 B
TypeScript

// TODO: install these deps even though they are already installed by other packages, or just silent the eslint error
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
// https://vitejs.dev/config/
export default defineConfig({
// TODO: remove classic jsxRuntime once we upgrade to React 18
plugins: [react({ jsxRuntime: 'classic' })],
});