DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
259 Bytes
import { nesting } from './plugin'
export default Object.assign(
function (opts) {
return {
postcssPlugin: 'tailwindcss/nesting',
Once(root, { result }) {
return nesting(opts)(root, result)
},
}
},
{ postcss: true }
)