File tree Expand file tree Collapse file tree 4 files changed +7
-50
lines changed Expand file tree Collapse file tree 4 files changed +7
-50
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -8,13 +8,13 @@ export const environment = {
8
8
stackexchangeApiUrl : 'https://api.stackexchange.com' ,
9
9
} ;
10
10
11
- export const AUTHORITY = process . env . AUTHORITY ;
12
- export const CLIENT_ID = process . env . CLIENT_ID ;
13
- export const SCOPES = process . env . SCOPES . split ( "," ) ;
11
+ export const AUTHORITY = process . env [ " AUTHORITY" ] ;
12
+ export const CLIENT_ID = process . env [ " CLIENT_ID" ] ;
13
+ export const SCOPES = process . env [ " SCOPES" ] . split ( "," ) ;
14
14
export const ITEMS_PER_PAGE = 5 ;
15
- export const STACK_EXCHANGE_ID = process . env . STACK_EXCHANGE_ID ;
16
- export const STACK_EXCHANGE_ACCESS_TOKEN = process . env . STACK_EXCHANGE_ACCESS_TOKEN ;
17
- export const AZURE_APP_CONFIGURATION_CONNECTION_STRING = process . env . AZURE_APP_CONFIGURATION_CONNECTION_STRING ;
15
+ export const STACK_EXCHANGE_ID = process . env [ " STACK_EXCHANGE_ID" ] ;
16
+ export const STACK_EXCHANGE_ACCESS_TOKEN = process . env [ " STACK_EXCHANGE_ACCESS_TOKEN" ] ;
17
+ export const AZURE_APP_CONFIGURATION_CONNECTION_STRING = process . env [ " AZURE_APP_CONFIGURATION_CONNECTION_STRING" ] ;
18
18
export const DATE_FORMAT = 'yyyy-MM-dd' ;
19
19
export const DATE_FORMAT_YEAR = 'YYYY-MM-DD' ;
20
20
export const GROUPS = {
Original file line number Diff line number Diff line change @@ -22,4 +22,4 @@ module.exports = (config) => {
22
22
patchComponentsStyles : true
23
23
} ) ;
24
24
return config_ ;
25
- } ;
25
+ } ;
You can’t perform that action at this time.
0 commit comments