mirror of https://github.com/alibaba/arthas.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
459 B
JavaScript
24 lines
459 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"all/**/*.{vue,ts,css}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
keyframes: {
|
|
},
|
|
animation: {
|
|
'spin-rev-pause':'0.3s linear 0s infinite reverse both pause spin',
|
|
'spin-rev-running':'0.3s linear 0s infinite reverse both running spin'
|
|
},
|
|
|
|
},
|
|
daisyui: {
|
|
themes: ["corporate"],
|
|
},
|
|
},
|
|
plugins: [
|
|
require("daisyui")
|
|
],
|
|
}
|