reCoreD-UI/web/vite.config.ts

8 lines
167 B
TypeScript
Raw Normal View History

2024-04-03 09:05:12 +00:00
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
2024-04-03 09:05:12 +00:00
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
2024-04-03 09:05:12 +00:00
})