My app is run in ElectronJs 8 which is the equivalent of Chrome 80 engine.
With Angular 8, I'm using AOT and my main.ts
has something like this in it:
platformBrowser().bootstrapModuleFactory(AppModuleNgFactory)
Based on what I've ready, I don't think the app.module.ngfactory
is generated anymore in Angular 9.
So how do I bootstrap the application? Do I revert to what I had before?
platformBrowserDynamic().boostrapModule(AppModule)
Am I loosing the AOT benefit by doing so?