mirror of https://github.com/jenkinsci/jenkins.git
13 lines
207 B
JavaScript
13 lines
207 B
JavaScript
|
module.exports = {
|
||
|
parser: "postcss-scss",
|
||
|
plugins: {
|
||
|
"postcss-preset-env": {
|
||
|
stage: false,
|
||
|
features: {
|
||
|
"media-query-ranges": true,
|
||
|
},
|
||
|
preserve: false,
|
||
|
},
|
||
|
},
|
||
|
};
|