style: format code and improve readability
This commit is contained in:
parent
c8c82af4b8
commit
f7e8fd76a6
12 changed files with 143 additions and 94 deletions
|
@ -15,7 +15,7 @@ export const httpInterceptor: HttpInterceptorFn = (req, next) => {
|
|||
'Referrer-Policy': 'no-referrer',
|
||||
'Access-Control-Allow-Origin': '*',
|
||||
'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE, OPTIONS',
|
||||
'Access-Control-Allow-Headers': '*'
|
||||
'Access-Control-Allow-Headers': '*',
|
||||
},
|
||||
})
|
||||
);
|
||||
|
@ -25,7 +25,7 @@ export const httpInterceptor: HttpInterceptorFn = (req, next) => {
|
|||
setHeaders: {
|
||||
'Access-Control-Allow-Origin': '*',
|
||||
'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE, OPTIONS',
|
||||
'Access-Control-Allow-Headers': '*'
|
||||
'Access-Control-Allow-Headers': '*',
|
||||
},
|
||||
})
|
||||
);
|
||||
|
|
Reference in a new issue