From f5199e179f58892dce358b41a04a70c4dbd482dd Mon Sep 17 00:00:00 2001 From: izzy Date: Mon, 10 Nov 2025 11:46:48 +0000 Subject: [PATCH] refactor: undo earlier change to vite.config.ts --- web/vite.config.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/web/vite.config.ts b/web/vite.config.ts index 13507c48dd..9707681ab0 100644 --- a/web/vite.config.ts +++ b/web/vite.config.ts @@ -6,10 +6,8 @@ import path from 'node:path'; import { visualizer } from 'rollup-plugin-visualizer'; import { defineConfig, type ProxyOptions, type UserConfig } from 'vite'; -process.env.IMMICH_SERVER_URL ??= 'http://immich-server:2283/'; - const upstream = { - target: process.env.IMMICH_SERVER_URL, + target: 'http://immich-server:2283/', secure: true, changeOrigin: true, logLevel: 'info',