Browse Source

feature(template): add application info to environment

pull/1606/head
mehmet-erim 7 years ago
parent
commit
2c09666025
  1. 4
      templates/app/angular/src/environments/environment.hmr.ts
  2. 4
      templates/app/angular/src/environments/environment.prod.ts
  3. 4
      templates/app/angular/src/environments/environment.ts

4
templates/app/angular/src/environments/environment.hmr.ts

@ -1,6 +1,10 @@
export const environment = {
production: false,
hmr: true,
application: {
name: 'MyProjectName',
logoUrl: '',
},
oAuthConfig: {
issuer: 'https://localhost:44305',
clientId: 'MyProjectName_App',

4
templates/app/angular/src/environments/environment.prod.ts

@ -1,6 +1,10 @@
export const environment = {
production: true,
hmr: false,
application: {
name: 'MyProjectName',
logoUrl: '',
},
oAuthConfig: {
issuer: 'https://localhost:44305',
clientId: 'MyProjectName_App',

4
templates/app/angular/src/environments/environment.ts

@ -1,6 +1,10 @@
export const environment = {
production: false,
hmr: false,
application: {
name: 'MyProjectName',
logoUrl: '',
},
oAuthConfig: {
issuer: 'https://localhost:44305',
clientId: 'MyProjectName_App',

Loading…
Cancel
Save