fixed choppy video on iPhone - mp4 encoding

This commit is contained in:
2026-02-08 18:04:34 +00:00
parent 8896aced3e
commit ac95ee9060
22 changed files with 539 additions and 60 deletions

View File

@@ -2,6 +2,15 @@ import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
export default defineConfig(({ mode }) => ({
base: mode === 'production' ? '/signsync/' : '/',
plugins: [react()],
})
server: {
proxy: {
'/api': {
target: 'http://localhost:3005',
changeOrigin: true,
},
},
},
}))