17 lines
No EOL
446 B
JavaScript
17 lines
No EOL
446 B
JavaScript
const plugin = require('tailwindcss/plugin')
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/mainview/**/*.{html,js,ts,jsx,tsx}"],
|
|
plugins: ["tailwindcss-animate",
|
|
plugin(function ({ matchUtilities, theme }) {
|
|
matchUtilities(
|
|
{
|
|
'animate-delay': (value) => ({
|
|
animationDelay: value,
|
|
}),
|
|
},
|
|
{ values: theme('transitionDelay') },
|
|
)
|
|
})],
|
|
} |