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