Skip to content

Commit 3141b13

Browse files
committed
Fix GitHub Pages: Add .nojekyll and disable Jekyll in docs directory
- Add .nojekyll file to docs/ directory to disable Jekyll processing - Add _config.yml with explicit Jekyll disable configuration - This should resolve the 'No such file or directory' error in GitHub Pages - GitHub Pages should now serve Sphinx-generated static HTML files directly - Documentation should be accessible at https://vcon-dev.github.io/vcon-lib/
1 parent 3d67645 commit 3141b13

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

docs/.nojekyll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This file tells GitHub Pages to skip Jekyll processing

docs/_config.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Disable Jekyll processing completely
2+
# This repository uses Sphinx-generated static HTML files
3+
plugins: []
4+
markdown: kramdown
5+
highlighter: rouge
6+
safe: true
7+
lsi: false
8+
excerpt_separator: "\n\n"
9+
incremental: false
10+
# Disable all Jekyll processing
11+
exclude: ["*"]
12+
include: []
13+
# Disable Jekyll completely
14+
baseurl: ""
15+
url: ""

0 commit comments

Comments
 (0)