From 166afac18a0c8909d9db41766376cf475aa59c93 Mon Sep 17 00:00:00 2001 From: elpatron Date: Fri, 29 May 2026 19:10:37 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20=5F=5FAPP=5FVERSION=5F=5F=20global=20in?= =?UTF-8?q?=20vite-env.d.ts=20f=C3=BCr=20tsc=20-b=20deklarieren?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Das Modul-Export machte die Version-Deklaration unsichtbar und brach den Docker-Frontend-Build. Co-authored-by: Cursor --- client/src/vite-env.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/vite-env.d.ts b/client/src/vite-env.d.ts index 81f95ab..ab2eddb 100644 --- a/client/src/vite-env.d.ts +++ b/client/src/vite-env.d.ts @@ -1,14 +1,14 @@ /// /// -declare const __APP_VERSION__: string - declare module '*?raw' { const content: string export default content } declare global { + const __APP_VERSION__: string + interface Window { plausible?: (event: string, options?: { props?: Record }) => void }