read-frog/postcss.config.cjs
ananaBMaster 0126569118
style: switch eslint quote style from single to double quotes (#1004)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-24 15:07:58 -08:00

15 lines
336 B
JavaScript

module.exports = {
plugins: {
"@tailwindcss/postcss": {},
"./src/utils/styles/postcss-rename-custom-props.cjs": {
fromPrefix: "--tw-",
toPrefix: "--rf-tw-",
},
"autoprefixer": {},
"postcss-rem-to-responsive-pixel": {
rootValue: 16,
propList: ["*"],
transformUnit: "px",
},
},
}