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) <noreply@anthropic.com>
This commit is contained in:
padreug 2026-07-22 02:53:45 +02:00
commit a70c50826d
2 changed files with 5 additions and 2 deletions

3
pnpm-workspace.yaml Normal file
View file

@ -0,0 +1,3 @@
allowBuilds:
vue-demi: false
verifyDepsBeforeRun: false

View file

@ -3,8 +3,8 @@ import { createRouter, createWebHistory, type RouteRecordRaw } from 'vue-router'
const routes: RouteRecordRaw[] = [ const routes: RouteRecordRaw[] = [
{ {
path: '/', path: '/',
name: 'home', name: 'presentation',
component: () => import('@/views/HomeView.vue'), component: () => import('@/views/PresentationView.vue'),
}, },
] ]