2 Commits

Author SHA1 Message Date
Sebastian c28ae8889b Update dependency vite to v8.1.5 2026-07-18 03:02:30 +00:00
Sebastian a97556b9ae refactor: rename main entry point
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
2026-07-14 17:40:11 -04:00
2 changed files with 2 additions and 2 deletions
+2 -2
View File
@@ -2,7 +2,7 @@ const routes = [
{
name: 'user_profile',
path: '/me',
component: () => import('@/views/ProfilePage.vue'),
component: () => import('@/pages/Main.vue'),
meta: {
requiresAuth: true
}
@@ -10,7 +10,7 @@ const routes = [
{
name: 'user_profile-tab',
path: '/me/:tab',
component: () => import('@/views/ProfilePage.vue'),
component: () => import('@/pages/Main.vue'),
meta: {
requiresAuth: true
}