Files
Remote-Control-Center/mc_test/node_modules/tailwindcss/src/postcss-plugins/nesting/index.js
2025-11-25 09:56:15 +03:00

14 lines
259 B
JavaScript
Executable File

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