mirror of
https://git.meshkee.com/Meshkee/dashboards.git
synced 2026-08-11 22:30:58 +04:30
Move template/issue editors to full pages, add public invoice SPA with PDF print, and local-aware public URLs. Co-authored-by: Cursor <cursoragent@cursor.com>
13 lines
295 B
TypeScript
13 lines
295 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_BASE_URL?: string
|
|
readonly VITE_ADMIN_DOMAIN?: string
|
|
readonly VITE_INVOICE_PUBLIC_DOMAIN?: string
|
|
readonly VITE_INVOICE_PUBLIC_BASE_URL?: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|