vue3 version of frontend

This commit is contained in:
2026-05-05 22:03:56 +02:00
parent 9891a03982
commit 71d341c9f3
37 changed files with 2592 additions and 6815 deletions
+12 -8
View File
@@ -3,17 +3,21 @@
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview"
},
"dependencies": {
"@astrojs/tailwind": "^6.0.2",
"astro": "^5.17.1",
"js-yaml": "^4.1.1"
"vue": "^3.5.0",
"vue-router": "^4.4.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9"
"@vitejs/plugin-vue": "^5.2.0",
"autoprefixer": "^10.4.0",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.6.0",
"vite": "^5.4.0",
"vue-tsc": "^2.1.0"
}
}