UNPKG

@shopify/shopify-app-remix

Version:

Shopify Remix - to simplify the building of Shopify Apps with Remix

11 lines (8 loc) 260 B
import {APP_BRIDGE_URL} from '../const'; let appBridgeUrlOverride: string | undefined; export function setAppBridgeUrlOverride(url: string) { appBridgeUrlOverride = url; } export function appBridgeUrl() { return appBridgeUrlOverride || APP_BRIDGE_URL; }