Updated openvidu-ionic
This commit is contained in:
parent
acc5dee3b5
commit
cde8191e0b
@ -19,8 +19,8 @@ import { environment } from 'src/environments/environment';
|
||||
styleUrls: ['home.page.scss'],
|
||||
})
|
||||
export class HomePage {
|
||||
APPLICATION_SERVER_URL = 'http://localhost:5000/';
|
||||
WS_LIVEKIT_URL = 'ws://localhost:7880/';
|
||||
APPLICATION_SERVER_URL = environment.applicationServerUrl;
|
||||
WS_LIVEKIT_URL = environment.wsLivekitUrl;
|
||||
private IS_DEVICE_DEV_MODE = false;
|
||||
|
||||
// OpenVidu objects
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
export const environment = {
|
||||
production: true,
|
||||
// Only for local development with a real device. This will be filled automatically running 'npm dev:android' or 'npm dev:ios'
|
||||
externalIp: ''
|
||||
applicationServerUrl: '',
|
||||
wsLivekitUrl: '',
|
||||
};
|
||||
|
||||
@ -4,6 +4,8 @@
|
||||
|
||||
export const environment = {
|
||||
production: false,
|
||||
applicationServerUrl: 'http://localhost:5000/',
|
||||
wsLivekitUrl: 'ws://localhost:7880/',
|
||||
// Only for local development with a real device. This will be filled automatically running 'npm dev:android' or 'npm dev:ios'
|
||||
externalIp: '192.168.1.46'
|
||||
externalIp: ''
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user