mirror of
https://github.com/videojs/video.js.git
synced 2024-11-24 08:42:25 +02:00
3df0e9b7f4
- s/last 3 major version/last 3 major versions/ - sync with current browserslistrc, babelrc, rollup_config
9 lines
320 B
JavaScript
9 lines
320 B
JavaScript
// see https://github.com/browserslist/browserslist for more info
|
|
const browsersList = ['last 3 major versions', 'Firefox ESR', 'Chrome >= 53', 'not dead', 'not ie 11', 'not baidu 7', 'not and_qq 11', 'not and_uc 12', 'not op_mini all'];
|
|
|
|
module.exports = {
|
|
plugins: [
|
|
require('autoprefixer')(browsersList)
|
|
]
|
|
};
|