diff options
Diffstat (limited to 'javascript/videojs/postcss.config.js')
| -rw-r--r-- | javascript/videojs/postcss.config.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/javascript/videojs/postcss.config.js b/javascript/videojs/postcss.config.js new file mode 100644 index 0000000..e8586d0 --- /dev/null +++ b/javascript/videojs/postcss.config.js @@ -0,0 +1,8 @@ +// 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) + ] +}; |
