wp_back/wp-content/themes/twentynineteen/postcss.config.js

16 lines
255 B
JavaScript
Raw Normal View History

2024-05-20 15:37:46 +03:00
var postcssFocusWithin = require('postcss-focus-within');
module.exports = {
plugins: {
autoprefixer: {}
}
};
module.exports = {
plugins: [
postcssFocusWithin({
disablePolyfillReadyClass: true
})
]
};