Files
crewli/apps/portal/env.d.ts
bert.hausmans 87f0bcce6e feat(portal): strip Vuexy demo content and create clean portal shell
Remove all demo pages, dialogs, sidebar navigation, and layout components.
Create minimal top-bar portal layout with auth-aware navigation, placeholder
pages for volunteer registration, dashboard, shifts, profile, artist advance,
and login. Add Pinia auth store, axios with Sanctum support, and router guards.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-10 17:38:55 +02:00

12 lines
271 B
TypeScript

import 'vue-router'
declare module 'vue-router' {
interface RouteMeta {
layoutWrapperClasses?: string
navActiveLink?: RouteLocationRaw
layout?: 'blank' | 'default' | 'portal'
requiresAuth?: boolean
requiresToken?: boolean
public?: boolean
}
}