chore: 升级vitev5 版本,规定node版本>=18.0.0pnpm版本>=8.6.10 (#738)

This commit is contained in:
xiaoming
2023-11-10 13:16:05 +08:00
committed by GitHub
parent 6e195c8b5c
commit 10e68d681f
18 changed files with 2250 additions and 2298 deletions

19
tailwind.config.ts Normal file
View File

@@ -0,0 +1,19 @@
import type { Config } from "tailwindcss";
export default {
darkMode: "class",
corePlugins: {
preflight: false
},
content: ["./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
bg_color: "var(--el-bg-color)",
primary: "var(--el-color-primary)",
text_color_primary: "var(--el-text-color-primary)",
text_color_regular: "var(--el-text-color-regular)"
}
}
}
} satisfies Config;