Files
Tobias Koppers 333489d8db Turbopack: fix postcss in RSC CSS (#82554)
### What?

make sure to apply PostCSS on .module.css that is requested from RSC.

Fixes a regression from #82448

Closes #82545
2025-08-12 10:54:17 +02:00

13 lines
205 B
JavaScript

const plugin = () => {
return {
postcssPlugin: 'color-change',
Declaration: {
color(prop) {
prop.value = 'green'
},
},
}
}
plugin.postcss = true
module.exports = plugin