chore: fix project errors

This commit is contained in:
2026-02-12 18:48:18 -03:00
parent 5c856300cd
commit 3f89eca586
4 changed files with 27 additions and 17 deletions
+14
View File
@@ -0,0 +1,14 @@
/// <reference types="vite/client" />
/// <reference types="vite-plugin-pwa/client" />
interface ImportMetaEnv {
readonly VITE_APPWRITE_PROJECT_ID: string;
readonly VITE_APPWRITE_ENDPOINT: string;
readonly VITE_APPWRITE_DBID: string;
readonly VITE_APPWRITE_FOODENTRIESID: string;
readonly VITE_APPWRITE_USERSETTINGSID: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}