mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-08 16:49:58 +00:00
23 lines
661 B
TypeScript
23 lines
661 B
TypeScript
"use strict";
|
|
|
|
import { Options } from "./lib/options";
|
|
|
|
export default {
|
|
bridgeApplicationName: BRIDGE_NAME,
|
|
bridgeBackupEnabled: false,
|
|
bridgeBackupHost: "localhost",
|
|
bridgeBackupPort: 9556,
|
|
mediaEnabled: true,
|
|
mediaSyncElement: false,
|
|
mediaStopOnUnload: false,
|
|
localMediaEnabled: true,
|
|
localMediaServerPort: 9555,
|
|
mirroringEnabled: false,
|
|
mirroringAppId: MIRRORING_APP_ID,
|
|
receiverSelectorCloseIfFocusLost: true,
|
|
receiverSelectorWaitForConnection: true,
|
|
userAgentWhitelistEnabled: true,
|
|
userAgentWhitelistRestrictedEnabled: true,
|
|
userAgentWhitelist: ["https://www.netflix.com/*"]
|
|
} as Options;
|