refactor: migrate project structure to Vue 3 with Vite and Tailwind CSS integration

This commit is contained in:
ws50529
2026-05-11 09:56:16 +08:00
parent a45569c94c
commit e6f2bf29e9
19 changed files with 3083 additions and 764 deletions
+15
View File
@@ -0,0 +1,15 @@
export default {
darkMode: 'class',
content: ['./index.html', './src/**/*.{vue,js}', './static/index.html'],
theme: {
extend: {
colors: {
dark: '#121212',
darker: '#0a0a0a',
primary: '#1f77b4',
secondary: '#ff7f0e',
},
},
},
plugins: [],
}