commerce/lib/spree/index.tsx
2024-05-21 20:36:49 +05:00

10 lines
281 B
TypeScript

const createAxiosFetcher = require('@spree/axios-fetcher/dist/server/index').default;
import { makeClient } from '@spree/storefront-api-v2-sdk/dist/client';
const spree = makeClient({
host: 'http://localhost:3000',
createFetcher: createAxiosFetcher
});
export default spree;