Files
danbooru/postcss.config.js
evazion 3bf65d1378 css: update browserslist requirement.
Update the minimum browser requirement from browsers released since
2012, to browsers released in the last 5 years.

This means PostCSS won't prefix CSS properties like `flex` or other
properties supported by browsers since 2017. Babel also won't transpile
Javascript syntax that has been supported by browsers since 2017.
2022-01-08 12:09:25 -06:00

9 lines
127 B
JavaScript

module.exports = {
plugins: [
require('postcss-import'),
require('postcss-preset-env')({
stage: 3
})
]
}