main.ts 263 B

1234567
  1. /// <reference types="@angular/localize" />
  2. import { bootstrapApplication } from '@angular/platform-browser';
  3. import { appConfig } from './app/app.config';
  4. import { App } from './app/app';
  5. bootstrapApplication(App, appConfig).catch((err) => console.error(err));