Question 1 / 1
You need to inject the current user's auth token into a service. The token is stored in localStorage and may change during the app session. Which provider configuration correctly delivers the current token value each time a new service instance is created?
typescript export const AUTH_TOKEN = new InjectionToken<string>('AUTH_TOKEN');