From 2d05af527947d3c53489be2e34c684ccf4d3da33 Mon Sep 17 00:00:00 2001 From: Stephanie Gredell Date: Sat, 29 Nov 2025 20:24:11 -0800 Subject: [PATCH] Add Vite type definitions for frontend --- frontend/src/vite-env.d.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 frontend/src/vite-env.d.ts diff --git a/frontend/src/vite-env.d.ts b/frontend/src/vite-env.d.ts new file mode 100644 index 0000000..561bc8c --- /dev/null +++ b/frontend/src/vite-env.d.ts @@ -0,0 +1,10 @@ +/// + +interface ImportMetaEnv { + readonly VITE_API_URL: string +} + +interface ImportMeta { + readonly env: ImportMetaEnv +} +