next.js/test/e2e/app-dir/css-modules-rsc-postcss/plugin.js
plugin.js13 lines205 B
const plugin = () => {
  return {
    postcssPlugin: 'color-change',
    Declaration: {
      color(prop) {
        prop.value = 'green'
      },
    },
  }
}
plugin.postcss = true
module.exports = plugin
Quest for Codev2.0.0
/
SIGN IN