itmo-php-course/engine/node_modules/tailwindcss/src/postcss-plugins/nesting/index.js
2024-12-26 16:32:02 +03:00

14 lines
259 B
JavaScript

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