From 7d7d17f918af11ab5043ca18fa0afed50d26ec95 Mon Sep 17 00:00:00 2001 From: Jan-Henrik Bruhn Date: Thu, 11 Dec 2025 13:30:11 +0100 Subject: [PATCH] Build web app with correct base path for GitHub Pages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Set Vite base path to /respira/ when building for GitHub Pages so assets load correctly from the repository subdirectory. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7d7e04b..9f33d52 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -122,7 +122,7 @@ jobs: run: npm ci - name: Build web app - run: npm run build + run: npm run build -- --base=/respira/ - name: Upload web build artifact uses: actions/upload-artifact@v4