|
@@ -12,8 +12,9 @@ const router = new Router({
|
|
|
{ path: '/dashboard', component: () => import('../views/Dashboard/Uploads.vue') },
|
|
|
{ path: '/dashboard/albums', component: () => import('../views/Dashboard/Albums.vue') },
|
|
|
{ path: '/dashboard/settings', component: () => import('../views/Dashboard/Settings.vue') },
|
|
|
- { path: '/a/:identifier', component: () => import('../views/PublicAlbum.vue'), props: true }
|
|
|
- // { path: '*', component: () => import('../views/NotFound.vue') }
|
|
|
+ { path: '/a/:identifier', component: () => import('../views/PublicAlbum.vue'), props: true },
|
|
|
+ { path: '/404', component: () => import('../views/NotFound.vue') },
|
|
|
+ { path: '*', component: () => import('../views/NotFound.vue') }
|
|
|
]
|
|
|
});
|
|
|
|