To install openssl run the following command from the bash shell:
sudo apt-get install opensslFor Windows machines you will need to download the binary and install. I recommend using a unix compatible terminal like mobaxterm or cygwin.
To install openssl run the following command from the bash shell:
sudo apt-get install opensslFor Windows machines you will need to download the binary and install. I recommend using a unix compatible terminal like mobaxterm or cygwin.
| import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; | |
| import { enableProdMode } from '@angular/core'; | |
| import { AppModule } from './app/app.module'; | |
| if (process.env.ENV === 'production') { | |
| enableProdMode(); | |
| } | |
| platformBrowserDynamic().bootstrapModule(AppModule); |