From 6a4401eb7ccf5b81656e24f6265473841ad5fa78 Mon Sep 17 00:00:00 2001 From: kolaente Date: Thu, 19 Feb 2026 14:54:40 +0100 Subject: [PATCH] feat(frontend): make dev server port configurable via VIKUNJA_FRONTEND_PORT env var --- frontend/vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index d3e820399..24e64b141 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -213,7 +213,7 @@ function getBuildConfig(env: Record) { }, server: { host: '127.0.0.1', // see: https://github.com/vitejs/vite/pull/8543 - port: 4173, + port: parseInt(env.VIKUNJA_FRONTEND_PORT || '4173', 10), strictPort: true, }, output: {