19 lines
399 B
JavaScript
19 lines
399 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const defaultConfig = {
|
|
port: 9000,
|
|
expire_timeout: 5000,
|
|
alive_timeout: 60000,
|
|
key: "peerjs",
|
|
path: "/myapp",
|
|
concurrent_limit: 5000,
|
|
allow_discovery: false,
|
|
proxied: false,
|
|
cleanup_out_msgs: 1000,
|
|
ssl: {
|
|
key: "",
|
|
cert: ""
|
|
}
|
|
};
|
|
exports.default = defaultConfig;
|