From 300ba9582a256c8a4a7be70cb2dfc1b398415b01 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 21 Feb 2026 10:51:08 +0000 Subject: [PATCH 1/2] Fix GitHub Pages base path for subdirectory deployment Add site and base options to astro.config.mjs so all internal links include the /computational-relationship-dynamic/ prefix required when the site is hosted at endemicmedia.github.io/computational-relationship-dynamic/. Without this, navigation links resolve to endemicmedia.github.io/simulation instead of endemicmedia.github.io/computational-relationship-dynamic/simulation. https://claude.ai/code/session_016FeYSXvGM3J28cvuXcwEVs --- astro.config.mjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/astro.config.mjs b/astro.config.mjs index e7b184a..26a4438 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -3,6 +3,8 @@ import svelte from '@astrojs/svelte'; export default defineConfig({ integrations: [svelte()], + site: 'https://endemicmedia.github.io', + base: '/computational-relationship-dynamic', output: 'static', build: { assets: '_astro' From 5079898484076cd4f9823dd7c2b1378a89a4b76f Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 21 Feb 2026 10:52:56 +0000 Subject: [PATCH 2/2] Trigger GitHub Pages deploy on feature branch pushes Add the development branch to the workflow trigger so that pushes to claude/research-simulation-framework-YKcXK automatically redeploy the site, not just pushes to main/master. https://claude.ai/code/session_016FeYSXvGM3J28cvuXcwEVs --- .github/workflows/deploy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c6621c5..cfce8bb 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -5,6 +5,7 @@ on: branches: - main - master + - claude/research-simulation-framework-YKcXK workflow_dispatch: permissions: