hotfix: shoppify hydrogen initialization with mock data

This commit is contained in:
Harivansh Rathi 2025-02-20 19:47:43 -05:00
parent 357979d0af
commit 4e59c6866d
15 changed files with 6510 additions and 115 deletions

10
src/env.d.ts vendored Normal file
View file

@ -0,0 +1,10 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_SHOPIFY_STORE_DOMAIN: string;
readonly VITE_SHOPIFY_STOREFRONT_TOKEN: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}