Added a new development page where it shows the status of the site
Some checks failed
GitHub Actions / check (push) Has been cancelled
GitHub Actions / build (18) (push) Has been cancelled
GitHub Actions / build (20) (push) Has been cancelled
GitHub Actions / build (22) (push) Has been cancelled

This commit is contained in:
becarta
2025-05-01 20:37:33 +02:00
parent 7c748d774c
commit 93a8763e04
4 changed files with 133 additions and 21 deletions

8
src/env.d.ts vendored
View File

@@ -3,3 +3,11 @@
/// <reference types="astro/client" />
/// <reference types="vite/client" />
/// <reference types="../vendor/integration/types.d.ts" />
interface ImportMetaEnv {
readonly GITLAB_TOKEN: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}