1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 00:03:56 +00:00

enable prod mode on production env

This commit is contained in:
Kyle Spearrin
2018-06-05 00:31:06 -04:00
parent 22c1b0627e
commit 9cafb76781
3 changed files with 5 additions and 2 deletions

View File

@@ -6,6 +6,8 @@ require('../scss/styles.scss');
import { AppModule } from './app.module';
// enableProdMode(); // TODO: if production
if (process.env.ENV === 'production') {
enableProdMode();
}
platformBrowserDynamic().bootstrapModule(AppModule);