mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-20 03:13:09 +09:00
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"}
|
|
}
|
|
};
|