mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-04 07:31:38 +00:00
17 lines
549 B
TypeScript
17 lines
549 B
TypeScript
import { provideHttpClient, withInterceptors } from '@angular/common/http';
|
|
import {
|
|
EnvironmentProviders,
|
|
Provider,
|
|
inject,
|
|
provideEnvironmentInitializer,
|
|
} from '@angular/core';
|
|
import { authInterceptor } from 'app/core/auth/auth.interceptor';
|
|
import { AuthService } from 'app/core/auth/auth.service';
|
|
|
|
export const provideAuth = (): Array<Provider | EnvironmentProviders> => {
|
|
return [
|
|
provideHttpClient(withInterceptors([authInterceptor])),
|
|
provideEnvironmentInitializer(() => inject(AuthService)),
|
|
];
|
|
};
|