forked from rDrama/rDrama
1
0
Fork 0
rDrama/node_modules/tailwindcss/nesting/index.js

13 lines
231 B
JavaScript

let nesting = require('./plugin')
module.exports = (opts) => {
return {
postcssPlugin: 'tailwindcss/nesting',
Once(root, { result }) {
return nesting(opts)(root, result)
},
}
}
module.exports.postcss = true