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

10 lines
293 B
TypeScript

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