1
0
mirror of https://github.com/videojs/video.js.git synced 2024-11-24 08:42:25 +02:00
video.js/postcss.config.js
2018-06-21 14:21:17 -04:00

11 lines
302 B
JavaScript

// default is: > 0.5%, last 2 versions, Firefox ESR, not dead
// we add on ie 11 since we still support that.
// see https://github.com/browserslist/browserslist for more info
const browsersList = ['defaults', 'ie 11'];
module.exports = {
plugins: [
require('autoprefixer')(browsersList)
]
};