mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:11:15 +08:00
10 lines
374 B
TypeScript
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' })],
|
|
});
|