2 Commits

Author SHA1 Message Date
Sebastian f8a51d4fd6 chore(deps): update dependency vuetify to v4.1.5 2026-07-18 03:05:44 +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
@@ -1782,9 +1782,9 @@
} }
}, },
"node_modules/vuetify": { "node_modules/vuetify": {
"version": "4.1.2", "version": "4.1.5",
"resolved": "https://registry.npmjs.org/vuetify/-/vuetify-4.1.2.tgz", "resolved": "https://registry.npmjs.org/vuetify/-/vuetify-4.1.5.tgz",
"integrity": "sha512-2SUzXt2Q71/cVmSZhU6kOmAo1ev3NZaI/ynj55TTcu6jXAc9kezoqZKY+Xm+0STnAOcCoTseF0qPSs01LjUaaA==", "integrity": "sha512-cR3XMzWbVll9wSdarhH7asT27zm23rMNM5dQ9pMGwTPGwEm0km8mY6ERJAGHIa/nMw0pYXWHjf1O9qJ/0PtZCQ==",
"license": "MIT", "license": "MIT",
"funding": { "funding": {
"type": "github", "type": "github",
+2 -2
View File
@@ -7,13 +7,13 @@ const routes = [
{ {
name: 'calendar', name: 'calendar',
path: '/calendar', path: '/calendar',
component: () => import('@/pages/ChronoPage.vue'), component: () => import('@/pages/Main.vue'),
meta: { layout: 'fixed' }, meta: { layout: 'fixed' },
}, },
{ {
name: 'tasks', name: 'tasks',
path: '/tasks', path: '/tasks',
component: () => import('@/pages/ChronoPage.vue'), component: () => import('@/pages/Main.vue'),
meta: { layout: 'fixed' }, meta: { layout: 'fixed' },
}, },
] ]