mirror of
https://github.com/harivansh-afk/GymSupps.git
synced 2026-04-15 04:03:29 +00:00
12 lines
384 B
TypeScript
12 lines
384 B
TypeScript
import {defineConfig} from '@shopify/hydrogen/config';
|
|
|
|
export default defineConfig({
|
|
shopify: {
|
|
storeDomain: 'your-store.myshopify.com',
|
|
storefrontToken: 'your_storefront_api_token',
|
|
storefrontApiVersion: '2024-01', // Use the latest API version
|
|
},
|
|
session: {
|
|
storage: 'memory', // You can change this to 'redis' or other storage methods in production
|
|
},
|
|
});
|