Skip to content

Instantly share code, notes, and snippets.

@tkutcher
Created January 10, 2022 02:17
Show Gist options
  • Save tkutcher/cfeed59c84f4ec648585ffe01e79e468 to your computer and use it in GitHub Desktop.
Save tkutcher/cfeed59c84f4ec648585ffe01e79e468 to your computer and use it in GitHub Desktop.
/** A configuration object with environment-specific properties. */
export interface AppEnvironment {
/** True if the @angular/core enableProdMode should be called. */
production: boolean;
/** The api server address. */
apiAddress: string;
}
export const environment: AppEnvironment = {
production: false,
apiAddress: "http://localhost:7071",
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment