From 79074f78c3aad283603896f38738c337a24470f9 Mon Sep 17 00:00:00 2001 From: Ralf Bauer Date: Fri, 10 Jan 2025 20:04:57 +0100 Subject: [PATCH] fixed lint error 3 --- webapp/vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/vite.config.ts b/webapp/vite.config.ts index e410d0067..fc6888eb4 100644 --- a/webapp/vite.config.ts +++ b/webapp/vite.config.ts @@ -14,7 +14,7 @@ let proxy_target; try { // eslint-disable-next-line proxy_target = require('./vite.user.ts').proxy_target; -} catch () { +} catch { proxy_target = '192.168.2.93'; }