@shopify/shopify-app-remix
Version:
Shopify Remix - to simplify the building of Shopify Apps with Remix
13 lines (10 loc) • 322 B
JavaScript
import { APP_BRIDGE_URL } from '../const.mjs';
let appBridgeUrlOverride;
function setAppBridgeUrlOverride(url) {
appBridgeUrlOverride = url;
}
function appBridgeUrl() {
return appBridgeUrlOverride || APP_BRIDGE_URL;
}
export { appBridgeUrl, setAppBridgeUrlOverride };
//# sourceMappingURL=app-bridge-url.mjs.map