upload to github

This commit is contained in:
jrosh 2025-05-29 13:41:38 +02:00
commit 92cc81e813
No known key found for this signature in database
GPG key ID: A4D68DCA6C9CCD2D
51 changed files with 8041 additions and 0 deletions

12
env.d.ts vendored Normal file
View file

@ -0,0 +1,12 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_REMOTE_API: boolean;
readonly VITE_API_URL: string;
readonly VITE_APP_NAME: string;
readonly VITE_PORT: number;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}