16 lines
426 B
JavaScript
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"}
|
|
}
|
|
};
|