refactor(frontend): migrate from Vite to Nuxt SPA

Replace Vite and Vue Router with Nuxt framework
Update Docker, build scripts, and env vars for Nuxt generate
This commit is contained in:
2026-05-06 09:19:23 +08:00
parent c821e9ebba
commit 6e8edbbb09
76 changed files with 7045 additions and 640 deletions

14
frontend/types/page-meta.d.ts vendored Normal file
View File

@@ -0,0 +1,14 @@
import type { RouteSeoConfig } from '../src/seo';
declare module '#app' {
interface PageMeta {
editorModal?: boolean;
requiredAnyPermission?: string[];
requiredPermission?: string;
requiresAuth?: boolean;
requiresVerified?: boolean;
seo?: RouteSeoConfig;
}
}
export {};