https://github.com/angular/angular
Raw File
Tip revision: 2668180cc7154805d6a32d8d18c48f958e3dbc30 authored by Joey Perrott on 05 October 2023, 14:58:44 UTC
fixup! ci: migrate snapshot publishing from CircleCI to GHA
Tip revision: 2668180
main.ts
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

import { AppModule } from './app/app.module';

platformBrowserDynamic().bootstrapModule(AppModule)
  .catch(err => console.error(err));
back to top