From 40f24c793328dbbaf644ba1461cb98c439226d8c Mon Sep 17 00:00:00 2001 From: Nikolai Giman Date: Sun, 22 Feb 2026 14:51:31 +0100 Subject: [PATCH] fix: external auth and up version --- api/package.json | 2 +- package.json | 2 +- web/package.json | 2 +- web/src/main.ts | 1 + 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/api/package.json b/api/package.json index b35c907..86f4914 100644 --- a/api/package.json +++ b/api/package.json @@ -1,6 +1,6 @@ { "name": "taskview-ce-api-server", - "version": "1.17.0", + "version": "1.20.2", "scripts": { "dev": "bun run --watch ./server.ts", "start": "NODE_ENV=production node ./dist/taskview-server.js", diff --git a/package.json b/package.json index cf75730..92f7e29 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "taskview-ce-monorepo", - "version": "1.20.1", + "version": "1.20.2", "private": true, "description": "TaskView CE monorepo containing web, API, and packages", "workspaces": [ diff --git a/web/package.json b/web/package.json index adff879..19c579b 100644 --- a/web/package.json +++ b/web/package.json @@ -2,7 +2,7 @@ "name": "web-nuxt-ui", "private": true, "type": "module", - "version": "1.20.1", + "version": "1.20.2", "scripts": { "dev": "vite", "build": "pnpm run typecheck && vite build", diff --git a/web/src/main.ts b/web/src/main.ts index eb89829..9113676 100644 --- a/web/src/main.ts +++ b/web/src/main.ts @@ -30,6 +30,7 @@ const router = createRouter({ { path: '/', name: 'login', + alias: '/login', component: LoginPage, }, {