diff --git a/web/public/fonts/Inter-VariableFont_slnt,wght.ttf b/web/public/fonts/Inter-VariableFont_slnt,wght.ttf new file mode 100644 index 000000000..e72470871 Binary files /dev/null and b/web/public/fonts/Inter-VariableFont_slnt,wght.ttf differ diff --git a/web/src/index.css b/web/src/index.css index 3a8eb8ea5..abb9da523 100644 --- a/web/src/index.css +++ b/web/src/index.css @@ -22,3 +22,8 @@ @apply bg-background text-foreground; } } + +@font-face { + font-family: "Inter"; + src: url("../fonts/Inter-VariableFont_slnt,wght.ttf"); +} diff --git a/web/vite.config.ts b/web/vite.config.ts index 5d5bf8207..e72ebb69a 100644 --- a/web/vite.config.ts +++ b/web/vite.config.ts @@ -12,24 +12,24 @@ export default defineConfig({ server: { proxy: { '/api': { - target: 'http://192.168.50.106:5000', + target: 'http://192.168.5.4:5000', ws: true, }, '/vod': { - target: 'http://192.168.50.106:5000' + target: 'http://192.168.5.4:5000' }, '/clips': { - target: 'http://192.168.50.106:5000' + target: 'http://192.168.5.4:5000' }, '/exports': { - target: 'http://192.168.50.106:5000' + target: 'http://192.168.5.4:5000' }, '/ws': { - target: 'ws://192.168.50.106:5000', + target: 'ws://192.168.5.4:5000', ws: true, }, '/live': { - target: 'ws://192.168.50.106:5000', + target: 'ws://192.168.5.4:5000', changeOrigin: true, ws: true, },