2026-03-26 03:26:37 -07:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [react()],
|
2026-04-14 23:14:41 -07:00
|
|
|
optimizeDeps: {
|
|
|
|
|
exclude: ['@ffmpeg/ffmpeg', '@ffmpeg/util', '@ffmpeg/core'],
|
|
|
|
|
},
|
2026-03-26 03:26:37 -07:00
|
|
|
server: {
|
2026-04-14 23:14:41 -07:00
|
|
|
port: 5173,
|
|
|
|
|
},
|
|
|
|
|
})
|