Skip to content
Snippets Groups Projects
Commit 7df60ad1 authored by Marshall Quander's avatar Marshall Quander
Browse files

Fix a sad bug

parent c3259fc6
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,8 @@ const BASE_ENVIRONMENTS = [ ...@@ -5,7 +5,8 @@ const BASE_ENVIRONMENTS = [
"/rooms/rooftopbuilding1/RooftopBuilding1.bundle.json", "/rooms/rooftopbuilding1/RooftopBuilding1.bundle.json",
"/rooms/wideopenspace/WideOpenSpace.bundle.json" "/rooms/wideopenspace/WideOpenSpace.bundle.json"
]; ];
const ALL_ENVIRONMENTS = (process.env.EXTRA_ENVIRONMENTS || "").split(",").concat(BASE_ENVIRONMENTS); const EXTRA_ENVIRONMENTS = process.env.EXTRA_ENVIRONMENTS ? process.env.EXTRA_ENVIRONMENTS.split(",") : [];
const ALL_ENVIRONMENTS = EXTRA_ENVIRONMENTS.concat(BASE_ENVIRONMENTS);
export const ENVIRONMENT_URLS = ALL_ENVIRONMENTS.map(x => process.env.ASSET_BUNDLE_SERVER + x); export const ENVIRONMENT_URLS = ALL_ENVIRONMENTS.map(x => process.env.ASSET_BUNDLE_SERVER + x);
export const DEFAULT_ENVIRONMENT_URL = ENVIRONMENT_URLS[0]; export const DEFAULT_ENVIRONMENT_URL = ENVIRONMENT_URLS[0];
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment