fluentd-ui/postcss.config.js
Kenji Okimoto cdb096e0c7 Replace .babelrc and .postcssrc.yml
.babelrc -> babel.config.js
.postcssrc.yml -> postcss.config.js

Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
2019-03-13 11:29:04 +09:00

13 lines
224 B
JavaScript

module.exports = {
plugins: [
require('postcss-import'),
require('postcss-flexbugs-fixes'),
require('postcss-preset-env')({
autoprefixer: {
flexbox: 'no-2009'
},
stage: 3
})
]
}