fuse-angular/src/main.ts

7 lines
246 B
TypeScript
Raw Permalink Normal View History

import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from 'app/app.component';
import { appConfig } from 'app/app.config';
2021-04-15 14:13:46 +00:00
bootstrapApplication(AppComponent, appConfig)
.catch(err => console.error(err));