netzbeere-web/postcss.config.js
XhmikosR 9fe93df553 package.json: properly configure xo and postcss
xo doesn't understand CSS syntax so it was useless that it was checking CSS files.

Also, configure autoprefixer so that its changes do not need a prettier fix after that.

Signed-off-by: XhmikosR <xhmikosr@gmail.com>
2025-02-22 17:58:11 +02:00

12 lines
144 B
JavaScript

/* eslint-env node */
"use strict";
module.exports = (/* ctx */) => ({
plugins: {
autoprefixer: {
cascade: false,
},
},
});