From 67be5fa7a5d5590a238b92d984317f2384aef733 Mon Sep 17 00:00:00 2001 From: Alejandra <90076947+alejsdev@users.noreply.github.com> Date: Mon, 8 Sep 2025 13:33:16 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Add=20ImportMetaEnv=20and=20ImportM?= =?UTF-8?q?eta=20interfaces=20for=20Vite=20environment=20variables=20(#186?= =?UTF-8?q?0)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/vite-env.d.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/frontend/src/vite-env.d.ts b/frontend/src/vite-env.d.ts index 11f02fe..b54b4c9 100644 --- a/frontend/src/vite-env.d.ts +++ b/frontend/src/vite-env.d.ts @@ -1 +1,9 @@ /// + +interface ImportMetaEnv { + readonly VITE_API_URL: string +} + +interface ImportMeta { + readonly env: ImportMetaEnv +}