From a9abf711b58d77e2ce21829ce8cf533abf8a90fd Mon Sep 17 00:00:00 2001 From: user Date: Tue, 5 Mar 2024 01:17:50 +0300 Subject: [PATCH] dev@locazia: add env --- src/env.d.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/env.d.ts diff --git a/src/env.d.ts b/src/env.d.ts new file mode 100644 index 0000000..8304c33 --- /dev/null +++ b/src/env.d.ts @@ -0,0 +1,9 @@ +/// + +interface ImportMetaEnv { + readonly VITE_API_BASE_URL: string; +} + +interface ImportMeta { + readonly env: ImportMetaEnv; +}