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 = {
88 stackexchangeApiUrl : 'https://api.stackexchange.com' ,
99} ;
1010
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 ( "," ) ;
1414export 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" ] ;
1818export const DATE_FORMAT = 'yyyy-MM-dd' ;
1919export const DATE_FORMAT_YEAR = 'YYYY-MM-DD' ;
2020export const GROUPS = {
Original file line number Diff line number Diff line change @@ -22,4 +22,4 @@ module.exports = (config) => {
2222 patchComponentsStyles : true
2323 } ) ;
2424 return config_ ;
25- } ;
25+ } ;
You can’t perform that action at this time.
0 commit comments