persona-community-5/.pnpm-store/v3/files/67/c0ae3d13c2929aba7d75b7fcae3e513274e4cd2f6185fd21f24f0e63d5aaddb1cfdf71d20edf80f425c542344562a6bc275a25514859f7d14fc09c92252b35
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

14 lines
259 B
Plaintext

import { nesting } from './plugin'
export default Object.assign(
function (opts) {
return {
postcssPlugin: 'tailwindcss/nesting',
Once(root, { result }) {
return nesting(opts)(root, result)
},
}
},
{ postcss: true }
)