mirror of
https://github.com/fluent/fluentd-ui.git
synced 2025-08-06 14:27:23 +02:00
.babelrc -> babel.config.js .postcssrc.yml -> postcss.config.js Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
13 lines
224 B
JavaScript
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
|
|
})
|
|
]
|
|
}
|