23 lines
639 B
TypeScript
23 lines
639 B
TypeScript
/// <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
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|
|
|
|
declare module 'swiper/css'
|
|
declare module 'swiper/css/navigation'
|
|
|
|
declare module '*?raw' {
|
|
const src: string
|
|
export default src
|
|
}
|