Adding public pages
Build and Push Docker Image / build (push) Successful in 1m8s

This commit is contained in:
2026-07-14 04:07:52 -07:00
parent 1af13091e6
commit b7b473d079
8 changed files with 268 additions and 27 deletions
+12
View File
@@ -0,0 +1,12 @@
import { RouteRecordRaw } from "vue-router"
export const publicRoutes: Readonly<RouteRecordRaw[]> = [
{
path: "/public",
component: () => import("@/layouts/PublicLayout.vue"),
meta: { requiresAuth: false },
children: [],
},
]
export default publicRoutes