DEV: Remove ie 11 from build targets

## Ember Upgrade

Context: https://deprecations.emberjs.com/v3.x/#toc_3-0-browser-support-policy
This commit is contained in:
Isaac Janzen 2022-05-10 08:32:57 -05:00 committed by GitHub
parent 994e6b2d4e
commit ee24868df3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 7 deletions

View File

@ -6,13 +6,6 @@ const browsers = [
'last 1 Safari versions'
];
const isCI = Boolean(process.env.CI);
const isProduction = process.env.EMBER_ENV === 'production';
if (isCI || isProduction) {
browsers.push('ie 11');
}
module.exports = {
browsers
};