diff options
| -rw-r--r-- | build.sbt | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -1,3 +1,7 @@ +import laika.helium.Helium +import laika.helium.config._ +import laika.ast.Path.Root + // https://typelevel.org/sbt-typelevel/faq.html#what-is-a-base-version-anyway ThisBuild / tlBaseVersion := "0.0" // your current series x.y @@ -49,6 +53,11 @@ lazy val docs = project .in(file("site")) .enablePlugins(TypelevelSitePlugin) .settings( - tlFatalWarnings := false + tlFatalWarnings := false, + laikaTheme := Helium.defaults.site + .topNavigationBar( + homeLink = IconLink.internal(Root / "index.md", HeliumIcon.home) + ) + .build ) .dependsOn(core.jvm, fs2.jvm) |
