generated from bisco/codex-bootstrap
16 lines
523 B
TypeScript
16 lines
523 B
TypeScript
import { bootstrapApplication } from '@angular/platform-browser';
|
|
import { provideAnimations } from '@angular/platform-browser/animations';
|
|
import { provideHttpClient } from '@angular/common/http';
|
|
import { provideRouter } from '@angular/router';
|
|
|
|
import { AppComponent } from './app/app.component';
|
|
import { appRoutes } from './app/app.routes';
|
|
|
|
bootstrapApplication(AppComponent, {
|
|
providers: [
|
|
provideAnimations(),
|
|
provideHttpClient(),
|
|
provideRouter(appRoutes),
|
|
],
|
|
}).catch((err) => console.error(err));
|