pegasus/frontend/vite.config.ts

12 lines
219 B
TypeScript
Raw Permalink Normal View History

2025-09-15 12:09:02 -05:00
// frontend/vite.config.ts
2025-09-08 00:48:47 -05:00
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
2025-09-15 12:09:02 -05:00
2025-09-08 00:48:47 -05:00
export default defineConfig({
plugins: [react()],
2025-09-15 12:09:02 -05:00
build: {
outDir: 'dist',
emptyOutDir: true,
},
2025-09-08 00:48:47 -05:00
})