From a70c50826d2a2483efa98a7197ffaaa3d80f00de Mon Sep 17 00:00:00 2001 From: padreug Date: Wed, 22 Jul 2026 02:53:45 +0200 Subject: [PATCH] build: configure pnpm workspace and presentation route Point / at the presentation deck and add pnpm-workspace.yaml so pnpm dev/build don't hard-fail on the ignored vue-demi build script. Co-Authored-By: Claude Opus 4.8 (1M context) --- pnpm-workspace.yaml | 3 +++ src/router/index.ts | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 pnpm-workspace.yaml diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml new file mode 100644 index 0000000..29b3bab --- /dev/null +++ b/pnpm-workspace.yaml @@ -0,0 +1,3 @@ +allowBuilds: + vue-demi: false +verifyDepsBeforeRun: false diff --git a/src/router/index.ts b/src/router/index.ts index 4f315f4..e1a0ee4 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -3,8 +3,8 @@ import { createRouter, createWebHistory, type RouteRecordRaw } from 'vue-router' const routes: RouteRecordRaw[] = [ { path: '/', - name: 'home', - component: () => import('@/views/HomeView.vue'), + name: 'presentation', + component: () => import('@/views/PresentationView.vue'), }, ]