Created
August 20, 2020 13:29
-
-
Save hikalkan/e7f6ae7f507b201783682dccaeadc5e3 to your computer and use it in GitHub Desktop.
ABP Angular UI v3.1 environment configuration sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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