Issue Description
The source_base_path in docs/site/manifest.json is currently set to an absolute Windows path (C:/Users/user/Desktop/osmodoc), which will cause cross-platform build issues.
Problem
Using absolute paths breaks builds on different operating systems and development environments.
Suggested Solution
Change the absolute path to:
- A relative path (e.g.,
"../.." or repository root)
- Use a DocFX variable for better portability
Context
This issue was identified during code review to ensure cross-platform compatibility.
Backlinks