blob: 9983fe965e66b5a337d6bab48b8d5e4a96cade48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
export default {
/**
* The URL with extra information about the app / service.
*/
aboutURL: 'https://jitsi.org/what-is-jitsi/',
/**
* The URL to the source code repository.
*/
sourceURL: 'https://github.com/jitsi/jitsi-meet-electron',
/**
* Application name.
*/
appName: 'Jitsi Meet',
/**
* The prefix for application protocol.
* You will also need to replace this in package.json.
*/
appProtocolPrefix: 'jitsi-meet',
/**
* The default server URL of Jitsi Meet Deployment that will be used.
*/
defaultServerURL: 'https://meet.jit.si',
/**
* The default server Timeout in seconds.
*/
defaultServerTimeout: 10,
/**
* URL to send feedback.
*/
feedbackURL: 'mailto:support@jitsi.org',
/**
* The URL of Privacy Policy Page.
*/
privacyPolicyURL: 'https://jitsi.org/meet/privacy',
/**
* The URL of Terms and Conditions Page.
*/
termsAndConditionsURL: 'https://jitsi.org/meet/terms'
};
|