c02414ea40
Co-authored-by: Lala, Shahd <Shahd.Lala@sybit.de> Reviewed-on: #7
13 lines
508 B
TypeScript
13 lines
508 B
TypeScript
import { loadRuntimeConfig } from '../app/core/config.loader';
|
|
|
|
const runtimeConfig = loadRuntimeConfig();
|
|
|
|
export const environment = {
|
|
production: true,
|
|
apiBaseUrl: runtimeConfig.apiUrl || 'https://st.nowchess.janis-eccarius.de',
|
|
accountServiceUrl: runtimeConfig.apiUrl || 'https://st.nowchess.janis-eccarius.de',
|
|
wsBaseUrl: runtimeConfig.wsUrl || 'wss://st.nowchess.janis-eccarius.de',
|
|
userWsBaseUrl: runtimeConfig.wsUrl || 'wss://st.nowchess.janis-eccarius.de',
|
|
apiPath: '/api/board/game'
|
|
};
|