feat: implement vertical crop, local LLM deepseek-v4-flash, multi-threading, word-level pink box highlight subtitles, and Nextcloud scan sync

This commit is contained in:
Renato
2026-07-02 16:12:23 +02:00
parent 50bdaedebb
commit c7c3c4b74a
154 changed files with 36256 additions and 3 deletions
+39
View File
@@ -0,0 +1,39 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
allowedHosts: [
'openshorts.app',
'www.openshorts.app'
],
proxy: {
'/api': {
target: 'http://backend:8000',
changeOrigin: true,
},
'/videos': {
target: 'http://backend:8000',
changeOrigin: true,
},
'/thumbnails': {
target: 'http://backend:8000',
changeOrigin: true,
},
'/gallery': {
target: 'http://backend:8000',
changeOrigin: true,
},
'/video': {
target: 'http://backend:8000',
changeOrigin: true,
},
'/render': {
target: 'http://renderer:3100',
changeOrigin: true,
}
}
}
})