I have an Angular 15 app, which sends quite a bunch of requests.
Most of the requests need Authorization with a Bearer token. Therefore I use an HttpInterceptor
.
But, there are some requests, which don't need Authorization (i.e. google maps API). However, everyone of my requests has Authorization now, due to the HttpInterceptor
.
How do I work around this?