If you're creating a bug report, please include the followings:
environment.ts file sample
import { Environment } from '@abp/ng.core';
const baseUrl = 'http://localhost:4200';
const oAuthConfig = {
issuer: 'https://localhost:44336/',
redirectUri: baseUrl,
clientId: 'MyApp_App',
dummyClientSecret: '1q2w3e*',
scope: 'offline_access MyApp',
showDebugInformation: true,
oidc: false,
requireHttps: true,
};
export const environment = {
production: false,
application: {
baseUrl,
name: 'MyApp',
},
oAuthConfig,
apis: {
default: {
url: 'https://localhost:44360',
rootNamespace: 'MyApp',
},
AbpAccountPublic: {
url: oAuthConfig.issuer,
rootNamespace: 'MyApp',
},
},
} as Environment;