File size: 265 Bytes
1e92f2d
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { bootstrapApplication } from '@angular/platform-browser'
import { appConfig } from './app/app.config'
import { BasicExampleComponent } from './app/app.component'

bootstrapApplication(BasicExampleComponent, appConfig).catch((err) =>
  console.error(err),
)