Browse Source

Need to figure out why 404 is breaking stuff

Pitu 6 years ago
parent
commit
22b511cf25
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/site/router/index.js

+ 1 - 1
src/site/router/index.js

@@ -12,7 +12,7 @@ const router = new Router({
 		{ path: '/dashboard', component: () => import('../views/Dashboard/Uploads.vue') },
 		{ path: '/dashboard', component: () => import('../views/Dashboard/Uploads.vue') },
 		{ path: '/dashboard/albums', component: () => import('../views/Dashboard/Albums.vue') },
 		{ path: '/dashboard/albums', component: () => import('../views/Dashboard/Albums.vue') },
 		{ path: '/dashboard/settings', component: () => import('../views/Dashboard/Settings.vue') },
 		{ path: '/dashboard/settings', component: () => import('../views/Dashboard/Settings.vue') },
-		{ path: '*', component: () => import('../views/NotFound.vue') }
+		// { path: '*', component: () => import('../views/NotFound.vue') }
 	]
 	]
 });
 });