mirror of
https://github.com/iconify/iconify.git
synced 2024-11-10 07:11:00 +00:00
27 lines
628 B
JavaScript
27 lines
628 B
JavaScript
'use strict';
|
|
|
|
const browsers = [
|
|
'last 1 Chrome versions',
|
|
'last 1 Firefox versions',
|
|
'last 1 Safari versions',
|
|
];
|
|
|
|
// Ember's browser support policy is changing, and IE11 support will end in
|
|
// v4.0 onwards.
|
|
//
|
|
// See https://deprecations.emberjs.com/v3.x#toc_3-0-browser-support-policy
|
|
//
|
|
// If you need IE11 support on a version of Ember that still offers support
|
|
// for it, uncomment the code block below.
|
|
//
|
|
// const isCI = Boolean(process.env.CI);
|
|
// const isProduction = process.env.EMBER_ENV === 'production';
|
|
//
|
|
// if (isCI || isProduction) {
|
|
// browsers.push('ie 11');
|
|
// }
|
|
|
|
module.exports = {
|
|
browsers,
|
|
};
|