offlineMode

@Input
val offlineMode: Property<Boolean>

Whether to resolve remote files/links over network.

This includes package-lists used for generating external documentation links: for instance, to make classes from standard library clickable.

Setting this to true can significantly speed up build times in certain cases, but can also worsen documentation quality and user experience, for instance by not resolving some dependency's class/member links.

When using offline mode, you can cache fetched files locally and provide them to Dokka as local paths. For instance, see GradleExternalDocumentationLinkBuilder.

Default is false.