Files
react.dev/postcss.config.js
Will Klein c74271e26a Add React Denver to the Meetups page (#4727)
Co-authored-by: Rick Hanlon <rickhanlonii@fb.com>
2025-04-02 12:17:42 -04:00

21 lines
350 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,
},
},
},
};