From 31ed9ad427ba432e53eac2efc78e1a62ed5d0b6d Mon Sep 17 00:00:00 2001 From: Anna Makarudze Date: Sun, 21 Dec 2025 20:22:47 +0100 Subject: [PATCH 1/2] Fix deployment path --- astro.config.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/astro.config.mjs b/astro.config.mjs index 47369e8..9c9d920 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -8,9 +8,9 @@ const isProd = process.env.GITHUB_PAGES === 'true'; export default defineConfig({ output: 'static', site: isProd - ? 'https://yourname.github.io/repo-name' + ? 'https://yourname.github.io/tutorial-v2/' : 'http://localhost:4321', - base: isProd ? '/repo-name' : '/', + base: isProd ? '/tutorial-v2/' : '/', integrations: [ react(), mdx() From 1e933289178319085e1d6c8e343b2654f58c26b6 Mon Sep 17 00:00:00 2001 From: Anna Makarudze Date: Sun, 21 Dec 2025 20:23:24 +0100 Subject: [PATCH 2/2] Fix deployment path --- astro.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astro.config.mjs b/astro.config.mjs index 9c9d920..1c05a40 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -8,7 +8,7 @@ const isProd = process.env.GITHUB_PAGES === 'true'; export default defineConfig({ output: 'static', site: isProd - ? 'https://yourname.github.io/tutorial-v2/' + ? 'https://djangogirls.github.io/tutorial-v2/' : 'http://localhost:4321', base: isProd ? '/tutorial-v2/' : '/', integrations: [