Files
vegasco/src/Vegasco-Web/src/environments/environment.ts
ThompsonNye 7d6f85db82
All checks were successful
continuous-integration/drone/push Build is passing
Try fetching data from protected endpoint
2025-06-14 20:30:47 +02:00

12 lines
220 B
TypeScript

import { Environment } from "./environment.interface";
export const environment: Environment = {
name: "",
isProduction: false,
keycloak: {
host: "",
realm: "",
clientId: ""
}
};