first commit

This commit is contained in:
2026-02-13 17:36:42 +08:00
commit f067e1bb78
155 changed files with 46676 additions and 0 deletions

18
tailwind.config.js Normal file
View File

@@ -0,0 +1,18 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{vue,js,ts}'],
theme: {
extend: {
colors: {
primary: '#1890ff',
success: '#52c41a',
warning: '#faad14',
error: '#ff4d4f'
}
}
},
plugins: [],
corePlugins: {
preflight: false
}
}