mirror of
https://github.com/le0pard/pgtune.git
synced 2025-06-30 22:26:27 +00:00
18 lines
358 B
JavaScript
18 lines
358 B
JavaScript
export default {
|
|
plugins: {
|
|
'postcss-import': {
|
|
path: ['src/css']
|
|
},
|
|
'postcss-preset-env': {
|
|
stage: 1,
|
|
browsers: ['>0.3%', 'Firefox ESR', 'not dead', 'not op_mini all'],
|
|
features: {
|
|
'custom-properties': {
|
|
strict: false,
|
|
warnings: false,
|
|
preserve: true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|