mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 18:59:30 +08:00
13 lines
259 B
Text
13 lines
259 B
Text
import { nesting } from './plugin'
|
|
|
|
export default Object.assign(
|
|
function (opts) {
|
|
return {
|
|
postcssPlugin: 'tailwindcss/nesting',
|
|
Once(root, { result }) {
|
|
return nesting(opts)(root, result)
|
|
},
|
|
}
|
|
},
|
|
{ postcss: true }
|
|
)
|