keycloak-scim/apps/account-ui/src/environment.ts

12 lines
315 B
TypeScript
Raw Normal View History

export type Environment = {
/** The URL to resources such as the files in the `public` directory. */
resourceUrl: string;
};
// The default environment, used during development.
const defaultEnvironment: Environment = {
resourceUrl: "http://localhost:8080",
};
export { defaultEnvironment as environment };