This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/config/targets.js
Robin Ward 4321a55b61
Sync up master with Ember CLI branch where possible (#11707)
These changes should all be safe to live in master even if they're not
being used yet.
2021-01-14 12:52:51 -05:00

19 lines
307 B
JavaScript

"use strict";
const browsers = [
"last 1 Chrome versions",
"last 1 Firefox 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 = {
browsers,
};