9 lines
310 B
TypeScript
9 lines
310 B
TypeScript
import { Environment } from './environment.interface';
|
|
|
|
export const environment: Environment = {
|
|
production: false,
|
|
apiUrl: 'http://localhost:3000/admin-api',
|
|
wsUrl: 'ws://localhost:3000/admin-api',
|
|
apiKey: undefined, //redirects to login if not set
|
|
serverUrl: 'https://localhost:4200',
|
|
}; |