I'm able to create my documentation via Xcode-> Product -> Build Documentation
and that creates MY_PROJ.docarchive.
I can also create .docarchive using xcodebuild
command
Now I'm trying to convert/export my .docarchive
to host it in static space so that I can host it on Github pages. I'm using https://github.com/apple/swift-docc to convert my docarchive using the following command,
swift run docc process-archive transform-for-static-hosting <path/to/docarchive> --output-path <destination_path>
I can see the files exported in output-path which I believe is the files that I need to deploy in static hosting space.
But when I host the same files in my local server or Github pages, they are still blank. Not sure what's wrong here.