@angular/platform-browser vs. @angular/platform-browser-dynamic
The difference between platform-browser-dynamic and platform-browser is the way your Angular app will be compiled. Using the dynamic platform makes Angular send the just-in-time compiler to the front-end along with your application. Which means your application is being compiled client-side. On the other hand, using platform-browser leads to an ahead-of-time pre-compiled version of your application … Read more