astro-ghostcms/.pnpm-store/v3/files/67/c0ae3d13c2929aba7d75b7fcae3...

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