31 lines
535 B
JavaScript
31 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: [],
|
||
|
}
|
||
|
|