1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-25 04:33:34 +00:00

enable prod mode for angular

This commit is contained in:
Kyle Spearrin
2018-02-13 17:22:10 -05:00
parent 4d0e46d893
commit efbfd9184e
3 changed files with 19 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
import { remote, shell } from 'electron';
import { isDev } from '../scripts/utils';
import { DeviceType } from 'jslib/enums';
import { I18nService } from 'jslib/abstractions/i18n.service';
@@ -143,4 +145,8 @@ export class DesktopPlatformUtilsService implements PlatformUtilsService {
return Promise.resolve(result === 0);
}
isDev(): boolean {
return isDev();
}
}