/** @type {import('tailwindcss').Config} */ module.exports = { content: [ './src/pages/**/*.{js,ts,jsx,tsx,mdx}', './src/components/**/*.{js,ts,jsx,tsx,mdx}', './src/app/**/*.{js,ts,jsx,tsx,mdx}', ], theme: { extend: { keyframes: { blink: { '0%, 100%': { opacity: '1' }, '50%': { opacity: '0' } } }, }, }, plugins: [], }