Add 'frontend/' from commit 'cf68d2d2e49c2f83124e1f8cea287745e07deb08'

git-subtree-dir: frontend
git-subtree-mainline: 5caa4e6761
git-subtree-split: cf68d2d2e4
This commit is contained in:
2026-09-12 22:35:24 +02:00
61 changed files with 11509 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
/// <reference types="vite/client" />
declare module '*.css';
declare module '*.scss';
declare module '*.png';
declare module '*.jpg';
declare module '*.jpeg';
declare module '*.svg';
declare module '*.mjs';
declare module 'pdfjs-dist/build/pdf.worker.mjs?url';
interface ImportMetaEnv {
readonly VITE_API_URL?: string;
readonly VITE_LINK_TO_GITHUB?: string;
readonly VITE_LINK_TO_LINKEDIN?: string;
readonly VITE_IP_Server?: string;
readonly VITE_MAIL?: string;
readonly VITE_NAME?: string;
// add other env vars here as needed
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}