Skip to content

Commit

Permalink
Remove testing scaffold
Browse files Browse the repository at this point in the history
  • Loading branch information
gfodor committed Nov 19, 2019
1 parent 42e3e24 commit 4b60e2d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/configs.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,13 @@ get(configs, "CORS_PROXY_SERVER", process.env.CORS_PROXY_SERVER);
get(configs, "NON_CORS_PROXY_DOMAINS", process.env.NON_CORS_PROXY_DOMAINS);
get(configs, "SENTRY_DSN", process.env.SENTRY_DSN);
get(configs, "BASE_ASSETS_PATH", process.env.BASE_ASSETS_PATH);
get(configs, "IS_MOZ", process.env.IS_MOZ);
get(configs, "IS_MOZ", !!process.env.IS_MOZ);

if (configs.BASE_ASSETS_PATH) {
// eslint-disable-next-line no-undef
__webpack_public_path__ = configs.BASE_ASSETS_PATH;
}

configs.IS_MOZ = false;
configs.name = () => (configs.IS_MOZ ? "Spoke" : "Scene Editor");
configs.longName = () => (configs.IS_MOZ ? "Spoke by Mozilla" : "Scene Editor");
configs.icon = () => (configs.IS_MOZ ? spokeIcon : editorIcon);
Expand Down

0 comments on commit 4b60e2d

Please sign in to comment.