forked from mirrors/gecko-dev
MozReview-Commit-ID: GCjMvnPKgZU --HG-- extra : rebase_source : 90faea2c1b2ec357f71efa36c864e6819f407140
15 lines
426 B
JavaScript
15 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"}
|
|
}
|
|
};
|