DEV: Remove ie 11 from build targets (#16652)

## 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:33:31 -05:00 committed by GitHub
parent 142ae3b5e5
commit cf273ec6e0
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", "last 1 Safari versions",
]; ];
const isCI = !!process.env.CI;
const isProduction = process.env.EMBER_ENV === "production";
if (isCI || isProduction) {
browsers.push("ie 11");
}
module.exports = { module.exports = {
browsers, browsers,
}; };