1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-08-26 23:09:46 +02:00
This commit is contained in:
Kyle Spearrin 2019-02-19 22:00:55 -05:00
parent 81eb2189ca
commit 944187f276

View File

@ -3,6 +3,11 @@ import 'core-js/es6';
import 'core-js/es7/reflect';
require('zone.js/dist/zone');
// IE11 fix, ref: https://github.com/angular/angular/issues/24769
if (!Element.prototype.matches && (Element.prototype as any).msMatchesSelector) {
Element.prototype.matches = (Element.prototype as any).msMatchesSelector;
}
if (process.env.ENV === 'production') {
// Production
} else {