indexHtmlPath

Path to the index.html of the publication, relative to the root directory. Will be appended to serverUri.

The IntelliJ built-in server requires a relative path originating from the root directory of the IntelliJ project.

For example,

  • given an IntelliJ project named MyProject located in a directory:

      /Users/rachel/projects/my-project/
  • and the publication is generated with an index file

      /Users/rachel/projects/my-project/docs/build/dokka/html/index.html
  • then indexHtmlPath must be

      docs/build/dokka/html/index.html
  • so that (assuming serverUri is http://localhost:63342) the logged URL is

      http://localhost:63342/MyProject/docs/build/dokka/html/index.html