original base url
deploy to danak / build_and_deploy (push) Has been cancelled

This commit is contained in:
hamid zarghami
2026-06-07 14:54:53 +03:30
parent 03fc293ee9
commit 9b00a22d11
5 changed files with 89 additions and 9 deletions
+19
View File
@@ -0,0 +1,19 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_URL: string;
readonly VITE_TOKEN_NAME: string;
readonly VITE_REFRESH_TOKEN_NAME: string;
readonly VITE_INVOICE_URL: string;
readonly VITE_DESIGN_TIER_1_MAX: string;
readonly VITE_DESIGN_PRICE_TIER_1: string;
readonly VITE_DESIGN_TIER_2_MAX: string;
readonly VITE_DESIGN_PRICE_TIER_2: string;
readonly VITE_DESIGN_TIER_3_MAX: string;
readonly VITE_DESIGN_PRICE_TIER_3: string;
readonly VITE_DESIGN_PRICE_TIER_4: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}