12 lines
296 B
TypeScript
12 lines
296 B
TypeScript
// Development environment configuration
|
|
export const environment = {
|
|
production: false,
|
|
apiBaseUrl: 'https://psp-api.shift-am.ir',
|
|
// apiBaseUrl: 'http://192.168.128.73:5002',
|
|
host: 'localhost',
|
|
port: 5001,
|
|
enableLogging: false,
|
|
enableDebug: false,
|
|
enableNativeBridge: false,
|
|
};
|