@shopify/shopify-app-remix
Version:
Shopify Remix - to simplify the building of Shopify Apps with Remix
12 lines (10 loc) • 340 B
JavaScript
import { setAbstractFetchFunc } from '@shopify/shopify-api/runtime';
import { installGlobals } from '@remix-run/node';
import '../node/index.mjs';
installGlobals();
const fetchFunc = fetch;
setAbstractFetchFunc(async (...args) => {
const response = await fetchFunc(...args);
return response;
});
//# sourceMappingURL=index.mjs.map