initial: client

This commit is contained in:
Shop Deploy
2026-06-11 13:48:08 +05:00
commit a36f96c290
271 changed files with 28009 additions and 0 deletions
Vendored Executable
+23
View File
@@ -0,0 +1,23 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_URL?: string
/** Канонический URL витрины для юр. текстов (политика конфиденциальности). Прод: задать перед сборкой. */
readonly VITE_PUBLIC_SITE_URL?: string
readonly VITE_STORE_EMAIL?: string
readonly VITE_STORE_PHONE?: string
readonly VITE_STORE_SOCIAL_NOTE?: string
readonly VITE_DEMO_MODE?: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}
declare module 'swiper/css'
declare module 'swiper/css/navigation'
declare module '*?raw' {
const src: string
export default src
}