Skip to content

Instantly share code, notes, and snippets.

@hikalkan
Created August 20, 2020 13:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hikalkan/e7f6ae7f507b201783682dccaeadc5e3 to your computer and use it in GitHub Desktop.
Save hikalkan/e7f6ae7f507b201783682dccaeadc5e3 to your computer and use it in GitHub Desktop.
ABP Angular UI v3.1 environment configuration sample
import { Config } from '@abp/ng.core';
const baseUrl = 'http://localhost:4200';
export const environment = {
production: false,
application: {
baseUrl,
name: 'MyProjectName',
logoUrl: '',
},
oAuthConfig: {
issuer: 'https://localhost:44305',
redirectUri: baseUrl,
clientId: 'MyProjectName_App',
responseType: 'code',
scope: 'offline_access MyProjectName',
},
apis: {
default: {
url: 'https://localhost:44305',
},
},
} as Config.Environment;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment