pgtune/postcss.config.js
Alexey Vasiliev e82f21bce9
moved to vite
2023-08-06 20:59:37 +03:00

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
}
}
}
}
}