head

@get:Internal
abstract val head: ListProperty<HEAD.() -> Unit>(source)

A list of element builders to add to the <head> of the generated index.html file.

You should normally use ListProperty.add to add new elements to the head block:

kobweb.app.index.head.add {
link(href = "styles.css", rel = "stylesheet")
}

which will preserve the default entries added by Kobweb. Use ListProperty.set to override the defaults with custom entries.