We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30aa13b commit 5048d40Copy full SHA for 5048d40
packages/common/src/utils/url-generator.ts
@@ -100,9 +100,9 @@ export const frameUrl = (
100
) => {
101
const path = append.indexOf('/') === 0 ? append.substr(1) : append;
102
103
- // if (process.env.LOCAL_SERVER) {
104
- // return `http://localhost:3002/${path}`;
105
- // }
+ if (process.env.LOCAL_SERVER) {
+ return `http://localhost:3002/${path}`;
+ }
106
107
if (process.env.STAGING) {
108
return stagingFrameUrl(sandbox.id, path);
0 commit comments