Initial Commit

This commit is contained in:
2023-09-08 19:05:37 +03:00
commit 7e60195cb7
185 changed files with 27107 additions and 0 deletions

12
frontend/env.d.ts vendored Normal file
View File

@@ -0,0 +1,12 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_APP_TITLE: string
readonly VITE_IPAM_URL: string
readonly VITE_BACKEND_URL: string
// more env variables...
}
interface ImportMeta {
readonly env: ImportMetaEnv
}