mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
32135b27a1
These changes include - Remove the usage of `enableProdMode` - Remove `test.ts`, `polyfills.ts`, `karma.conf.js` and environment files which are no longer generated by default PR Close #47904
8 lines
227 B
TypeScript
8 lines
227 B
TypeScript
// #docregion
|
|
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
|
|
import { AppModule } from './app/app.module';
|
|
|
|
platformBrowserDynamic().bootstrapModule(AppModule)
|
|
.catch(err => console.error(err));
|