diff --git a/platform/wab/src/wab/client/components/studio/studio-frame.tsx b/platform/wab/src/wab/client/components/studio/studio-frame.tsx index 625dca4cf..cfd281497 100644 --- a/platform/wab/src/wab/client/components/studio/studio-frame.tsx +++ b/platform/wab/src/wab/client/components/studio/studio-frame.tsx @@ -47,7 +47,7 @@ const whitelistedHosts = [ "https://host.plasmic.dev", "https://code-components.plasmic.site", "https://plasmic.app", - "https://host.plasmicdev.com", + "https://host.elasticpathdev.com", "https://staging.plasmic.app", "https://staging-host.plasmic.app", diff --git a/platform/wab/src/wab/shared/devflags.ts b/platform/wab/src/wab/shared/devflags.ts index 9afea1c03..6e9999f9d 100644 --- a/platform/wab/src/wab/shared/devflags.ts +++ b/platform/wab/src/wab/shared/devflags.ts @@ -285,10 +285,10 @@ const DEFAULT_DEVFLAGS = { process.env.CODEGEN_ORIGIN_HOST || process.env.CODEGEN_HOST || "http://codegen-origin.plasmic.app", - adminTeamDomain: production ? "plasmic.app" : "admin.example.com", + adminTeamDomain: production ? "elasticpath.com" : "admin.example.com", defaultHostUrl: process.env.REACT_APP_DEFAULT_HOST_URL || - "https://host.plasmicdev.com/static/host.html", + "https://host.elasticpathdev.com/static/host.html", dynamicPages: true, enablePlasmicHosting: true, // Used to invalidate etag cacheing mechanism altogether @@ -458,7 +458,7 @@ const DEFAULT_DEVFLAGS = { spacing: true, spacingArea: true, setHostLessProject: false, - plasmicHostingSubdomainSuffix: "plasmic.run", + plasmicHostingSubdomainSuffix: "elasticpath.run", splits: true, refActions: false, multiSelect: false, diff --git a/platform/wab/tools/backend-server.bash b/platform/wab/tools/backend-server.bash index 59d7ad0a3..3e83dbd03 100644 --- a/platform/wab/tools/backend-server.bash +++ b/platform/wab/tools/backend-server.bash @@ -3,7 +3,7 @@ if [[ $REACT_APP_DEV_HOST_PROXY ]]; then HOST_URL=${REACT_APP_DEV_HOST_PROXY}/static/host.html elif [[ $REACT_APP_DEV_PROXY ]]; then - HOST_URL=https://host.plasmicdev.com/static/host.html + HOST_URL=https://host.elasticpathdev.com/static/host.html else HOST_URL=http://localhost:${HOSTSERVER_PORT:-3005}/static/host.html fi diff --git a/platform/wab/tools/dev-server.bash b/platform/wab/tools/dev-server.bash index 9898b388e..640f41c3a 100644 --- a/platform/wab/tools/dev-server.bash +++ b/platform/wab/tools/dev-server.bash @@ -6,7 +6,7 @@ port=${PORT:-3003} if [[ $REACT_APP_DEV_HOST_PROXY ]]; then HOST_URL=${REACT_APP_DEV_HOST_PROXY}/static/host.html elif [[ $REACT_APP_DEV_PROXY ]]; then - HOST_URL=https://host.plasmicdev.com/static/host.html + HOST_URL=https://host.elasticpathdev.com/static/host.html else HOST_URL=http://localhost:${HOSTSERVER_PORT:-3005}/static/host.html fi