Add VPN proxy connection handling

This commit is contained in:
2026-07-07 22:33:15 +03:00
parent 7dbf786c56
commit c5bdb10445
8 changed files with 1108 additions and 29 deletions

View File

@@ -1,7 +1,7 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
const host = process.env.TAURI_DEV_HOST;
const host = process.env.TAURI_DEV_HOST || '127.0.0.1';
export default defineConfig({
plugins: [react()],
@@ -15,4 +15,3 @@ export default defineConfig({
},
},
});