18 lines
519 B
TypeScript
18 lines
519 B
TypeScript
import { ApplicationConfig, provideBrowserGlobalErrorListeners } from '@angular/core';
|
|
import { provideRouter } from '@angular/router';
|
|
|
|
import { routes } from './app.routes';
|
|
import { CookieService } from 'ngx-cookie-service';
|
|
import { provideDefaultClient } from './api/providers';
|
|
|
|
export const appConfig: ApplicationConfig = {
|
|
providers: [
|
|
provideBrowserGlobalErrorListeners(),
|
|
provideRouter(routes),
|
|
CookieService,
|
|
provideDefaultClient({
|
|
basePath: 'http://192.168.0.108:8080'
|
|
})
|
|
]
|
|
};
|