jenkins/postcss.config.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
207 B
JavaScript
Raw Permalink Normal View History

module.exports = {
2023-04-21 08:34:41 +01:00
parser: "postcss-scss",
plugins: {
"postcss-preset-env": {
stage: false,
features: {
"media-query-ranges": true,
},
preserve: false,
},
},
};