Guilherme Delgado
09/11/2025, 3:59 PM./gradlew dokkaGenerate in multi-module project, with:
dependencies {
dokka(project(":module-a"))
dokka(project(":module-b"))
}
Everything is generated as expected. Unfortunately, the root - http://localhost:63342/MyProject/build/dokka/html/index.html - index.html and navigation.html only show the first module. If I open the file (not using localhost) I can navigate between modules because the index.html shows “All modules” but the navigation.html is not rendered. If I open the navigation.html file, the links for each module are correct.
Any help?ephemient
09/11/2025, 4:11 PMGuilherme Delgado
09/11/2025, 4:14 PMGuilherme Delgado
09/11/2025, 4:34 PMpython3 -m http.server 8080
makes it possible to test 👌Oleg Yukhnevich
09/12/2025, 12:24 PM