2 Commits

Author SHA1 Message Date
Sebastian f5a6cef6f8 chore(deps): update dependency @vitejs/plugin-vue to v6.0.8 2026-07-18 03:05:34 +00:00
Sebastian 822acf7612 refactor: rename main entry point
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
2026-07-14 17:40:15 -04:00
3 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -501,9 +501,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
@@ -7,13 +7,13 @@ const routes = [
{
name: 'calendar',
path: '/calendar',
component: () => import('@/pages/ChronoPage.vue'),
component: () => import('@/pages/Main.vue'),
meta: { layout: 'fixed' },
},
{
name: 'tasks',
path: '/tasks',
component: () => import('@/pages/ChronoPage.vue'),
component: () => import('@/pages/Main.vue'),
meta: { layout: 'fixed' },
},
]