feat: PWA setup + /app base path

- Landing page at /
- Vue app at /app (PWA installable)
- Added manifest.json for mobile install
- iOS + Android meta tags
- Updated router base path
This commit is contained in:
2026-03-12 20:50:00 +00:00
parent 83fd53a1ea
commit 21c88be74f
25 changed files with 122 additions and 25 deletions

View File

@@ -2,7 +2,7 @@ import { createRouter, createWebHistory } from 'vue-router'
import { useAuthStore } from '@/stores/auth'
const router = createRouter({
history: createWebHistory(),
history: createWebHistory('/app/'),
routes: [
{
path: '/login',