This commit is contained in:
KNSONWS
2026-02-03 16:05:36 +01:00
parent 6af24d28e7
commit f2a3f47e07
7 changed files with 103 additions and 10 deletions

11
src/vite-env.d.ts vendored
View File

@@ -1 +1,12 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_APPWRITE_PROJECT_ID: string;
readonly VITE_APPWRITE_ENDPOINT: string;
readonly VITE_APPWRITE_DATABASE_ID?: string;
readonly VITE_APPWRITE_CONTACT_COLLECTION_ID?: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}