10 lines
410 B
TypeScript
10 lines
410 B
TypeScript
import { bootstrapApplication } from '@angular/platform-browser';
|
|
import { AppComponent } from './app/app.component';
|
|
import { provideRouter } from '@angular/router';
|
|
import { routes } from './app/app.routes';
|
|
import { provideHttpClient } from '@angular/common/http';
|
|
|
|
bootstrapApplication(AppComponent, {
|
|
providers: [provideRouter(routes), provideHttpClient()]
|
|
}).catch((err: Error) => console.error(err));
|