personal-site/tailwind.config.js
2024-12-21 19:11:09 -08:00

30 lines
535 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./app.vue",
"./error.vue",
],
theme: {
extend: {
keyframes: {
appear: {
"0%": {
opacity: "0",
},
"100%": {
opacity: "1",
},
},
animation: {
appear: "appear 0.5s ease-in-out",
}
}
},
},
plugins: [],
}