ADD new frontend

This commit is contained in:
Urtzi Alfaro
2025-08-28 10:41:04 +02:00
parent 9c247a5f99
commit 0fd273cfce
492 changed files with 114979 additions and 1632 deletions

24
fdev-ffrontend/vite-env.d.ts vendored Normal file
View File

@@ -0,0 +1,24 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_URL: string
readonly VITE_API_TIMEOUT: string
readonly VITE_API_RETRIES: string
readonly VITE_API_RETRY_DELAY: string
readonly VITE_API_LOGGING: string
readonly VITE_API_CACHING: string
readonly VITE_API_CACHE_TIMEOUT: string
readonly VITE_ENABLE_WEBSOCKETS: string
readonly VITE_ENABLE_OFFLINE: string
readonly VITE_ENABLE_OPTIMISTIC_UPDATES: string
readonly VITE_ENABLE_DEDUPLICATION: string
readonly VITE_ENABLE_METRICS: string
readonly VITE_STRIPE_PUBLISHABLE_KEY: string
readonly VITE_STRIPE_WEBHOOK_SECRET: string
readonly VITE_BYPASS_PAYMENT: string
readonly VITE_DEV_MODE: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}