mirror of
https://github.com/vercel/commerce.git
synced 2025-06-17 12:41:21 +00:00
10 lines
293 B
TypeScript
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;
|