Link

The link settings apply to the link helper which we encourage you to use for all site links.

[link]
verify = true
relative = true
include-index = false
allow = []

The allow list is helpful when you want to reference a path that is being dynamically generated, for example, if you were creating a stylesheet dynamically the link helper would fail to verify the destination as the file does not exists on disc so you can declare it here:

[link]
allow = [
  "assets/style.css"
]

Allow paths must not begin with a slash.

Back to Settings