2 Commits

Author SHA1 Message Date
Sebastian 4e6c529df2 Update dependency @vitejs/plugin-vue to v6.0.8 2026-07-18 03:02:27 +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
3 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -508,9 +508,9 @@
"license": "MIT"
},
"node_modules/@vitejs/plugin-vue": {
"version": "6.0.7",
"resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-6.0.7.tgz",
"integrity": "sha512-km+p+XdSz9Sxm5rqUbqcSfZYaAniKxWBj1KURl+Jr7UaPvvX7BmaWMdP69I5rrFDeQGyxAG7NXdc57vz+snhWg==",
"version": "6.0.8",
"resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-6.0.8.tgz",
"integrity": "sha512-0ZjgOg7oO6farnNGup7yvoM/YXZV84OZxHAwtflItNa/6zzQyVb5LNxyea3FEKEX2XlagIKzrlH7wwxkKgtiew==",
"dev": true,
"license": "MIT",
"dependencies": {
+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
}