https://git.jolheiser.com/tailwind-ctp-intellisense.git
1 2 3 4 5 6 7 8
module.exports = { plugins: [ function ({ addVariant, matchVariant }) { matchVariant('custom', (value) => `.custom:${value} &`, { values: { hover: 'hover' } }) addVariant('custom-hover', `.custom:hover &:hover`) }, ], }