Files
react.dev/postcss.config.js
2023-03-18 22:35:53 +00:00

21 lines
349 B
JavaScript

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*/
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
'postcss-flexbugs-fixes': {},
'postcss-preset-env': {
autoprefixer: {
flexbox: 'no-2009',
},
stage: 3,
features: {
'custom-properties': false,
},
},
},
}