All checks were successful
continuous-integration/drone/push Build is passing
12 lines
220 B
TypeScript
12 lines
220 B
TypeScript
import { Environment } from "./environment.interface";
|
|
|
|
export const environment: Environment = {
|
|
name: "",
|
|
isProduction: false,
|
|
keycloak: {
|
|
host: "",
|
|
realm: "",
|
|
clientId: ""
|
|
}
|
|
};
|