Skip to content

Commit 4fbc5d1

Browse files
SteveMacenskiclaude
andcommitted
Fix GitHub Pages 404 by setting Jekyll production environment
The home page was returning 404 because Jekyll was building in development mode, causing URL configuration issues. Setting JEKYLL_ENV=production ensures proper production URLs are generated for GitHub Pages deployment. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent d23d93a commit 4fbc5d1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/build-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
- name: Build Jekyll site
6464
run: |
6565
echo "Building Jekyll site..."
66-
bundle exec jekyll build --verbose
66+
JEKYLL_ENV=production bundle exec jekyll build --verbose
6767
echo "Jekyll build completed"
6868
6969
- name: Setup Pages

0 commit comments

Comments
 (0)