mirror of
https://github.com/dromara/hertzbeat.git
synced 2026-09-17 09:40:58 +00:00
Co-authored-by: Calvin <naruse_shinji@163.com> Co-authored-by: aias00 <rokkki@163.com> Co-authored-by: shown <yuluo08290126@gmail.com> Co-authored-by: tomsun28 <tomsun28@outlook.com> Co-authored-by: Logic <zqr10159@dromara.org>
47 lines
1.7 KiB
TypeScript
47 lines
1.7 KiB
TypeScript
/*
|
|
* Licensed to the Apache Software Foundation (ASF) under one
|
|
* or more contributor license agreements. See the NOTICE file
|
|
* distributed with this work for additional information
|
|
* regarding copyright ownership. The ASF licenses this file
|
|
* to you under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance
|
|
* with the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing,
|
|
* software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
* KIND, either express or implied. See the License for the
|
|
* specific language governing permissions and limitations
|
|
* under the License.
|
|
*/
|
|
|
|
import {ApplicationConfig, importProvidersFrom, provideZoneChangeDetection} from '@angular/core';
|
|
import {provideRouter} from '@angular/router';
|
|
|
|
import {routes} from './routes/routes-routing.module';
|
|
import {HTTP_INTERCEPTORS, HttpClientModule} from "@angular/common/http";
|
|
import {DefaultInterceptor} from "@core";
|
|
import {provideAnimations} from "@angular/platform-browser/animations";
|
|
import {TemplateService} from "./service/template.service";
|
|
import {LocalStorageService} from "./service/local-storage.service";
|
|
import {DataService} from "./service/data.service";
|
|
|
|
export const appConfig: ApplicationConfig = {
|
|
providers: [
|
|
provideZoneChangeDetection({eventCoalescing: true}),
|
|
provideRouter(routes),
|
|
provideAnimations(),
|
|
importProvidersFrom(HttpClientModule),
|
|
{
|
|
provide: HTTP_INTERCEPTORS,
|
|
useClass: DefaultInterceptor,
|
|
multi: true,
|
|
},
|
|
TemplateService,
|
|
LocalStorageService,
|
|
DataService
|
|
]
|
|
};
|