scalaVersion
in the docs
project settings
too.val scala3Version = "3.1.0"
lazy val docs = project // new documentation project
.in(file("aaa-docs")) // important: it must not be docs/
.dependsOn(root)
.enablePlugins(MdocPlugin)
.settings(
scalaVersion := scala3Version,
)
docs \ mdoc
is run with --watch
and refresh on compile?