update dependencies and add downloads page, various fixes

This commit is contained in:
2026-04-14 23:14:41 -07:00
parent 81d42662ee
commit e83648b82b
14 changed files with 1590 additions and 517 deletions
+12
View File
@@ -0,0 +1,12 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
optimizeDeps: {
exclude: ['@ffmpeg/ffmpeg', '@ffmpeg/util', '@ffmpeg/core'],
},
server: {
port: 5173,
},
})