Files
tubestation/browser/components/newtab/NewTabRemoteResources.jsm
Olivier Yiptong 3c8d2e3ba7 Bug 1258728 - new remote newtab staging origin r=ursula
MozReview-Commit-ID: GCjMvnPKgZU
2016-03-24 16:28:01 -04:00

16 lines
426 B
JavaScript

/* exported NewTabRemoteResources */
"use strict";
this.EXPORTED_SYMBOLS = ["NewTabRemoteResources"];
const NewTabRemoteResources = {
MODE_CHANNEL_MAP: {
production: {origin: "https://content.cdn.mozilla.net"},
staging: {origin: "https://s3_proxy_tiles.stage.mozaws.net"},
test: {origin: "https://example.com"},
test2: {origin: "http://mochi.test:8888"},
dev: {origin: "http://localhost:8888"}
}
};