diff options
| author | Amir Saeid <amir@glgdgt.com> | 2026-02-14 19:14:06 +0000 |
|---|---|---|
| committer | Amir Saeid <amir@glgdgt.com> | 2026-02-14 19:14:06 +0000 |
| commit | c03636087083f051c5cbbbc78042073fefcc16b6 (patch) | |
| tree | 0ede7b19c15c7223937a84c2b2ba685417baf480 | |
| parent | 1afaa0401d3dfc46b79cd6d761d81ae8c37d7b07 (diff) | |
Set homeLink
| -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) |
