// a default configuration that is used by the rtc package module.exports = { // simple constraints for defaults constraints: { video: true, audio: true }, // use the public development switchboard for signalling signaller: 'https://switchboard.rtc.io/', // no room is defined by default // rtc-quickconnect will autogenerate using a location.hash room: undefined, // specify ice servers or a generator function to create ice servers ice: [], // any data channels that we want to create for the conference // by default a chat channel is created, but other channels can be added also // additionally options can be supplied to customize the data channel config // see: channels: {}, // the selector that will be used to identify the localvideo container localContainer: '#l-video', // the selector that will be used to identify the remotevideo container remoteContainer: '#r-video', // should we atempt to load any plugins? plugins: [], // common options overrides that are used across rtc.io packages options: {} };