You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import { ApplicationConfig, importProvidersFrom } from '@angular/core';
|
|
|
|
import { provideRouter } from '@angular/router';
|
|
|
|
|
|
|
|
import { routes } from './app.routes';
|
|
|
|
import { provideClientHydration } from '@angular/platform-browser';
|
|
|
|
import { zh_CN, provideNzI18n } from 'ng-zorro-antd/i18n';
|
|
|
|
import { registerLocaleData } from '@angular/common';
|
|
|
|
import zh from '@angular/common/locales/zh';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { HttpClientModule } from '@angular/common/http';
|
|
|
|
import {BrowserAnimationsModule, provideAnimations} from '@angular/platform-browser/animations';
|
|
|
|
import {InitGuardService} from "./utils/initGuard.service";
|
|
|
|
|
|
|
|
registerLocaleData(zh);
|
|
|
|
|
|
|
|
export const appConfig: ApplicationConfig = {
|
|
|
|
providers: [
|
|
|
|
provideRouter(routes),
|
|
|
|
provideClientHydration(),
|
|
|
|
provideNzI18n(zh_CN),
|
|
|
|
importProvidersFrom(FormsModule),
|
|
|
|
importProvidersFrom(HttpClientModule),
|
|
|
|
provideAnimations(),
|
|
|
|
BrowserAnimationsModule,
|
|
|
|
InitGuardService, // 校验登录
|
|
|
|
]
|
|
|
|
};
|