Files
TechRadarAJR/postcss.config.js
Mathias Schopmans 335ecf6d46 fix: use webpack for dev-server to keep consistent css-module classnames
There's an inconsistency between webpack and next turbo's `localIdentName`

This also improves the hot-loading

fixes #440
2024-03-25 10:45:28 +01:00

18 lines
272 B
JavaScript

module.exports = {
plugins: [
"postcss-nested",
[
"postcss-preset-env",
{
autoprefixer: {
flexbox: "no-2009",
},
stage: 3,
features: {
"custom-properties": false,
},
},
],
],
};