浏览文档

配置 Hugo 图标模块

学习如何配置 Hugo 图标模块。

赞助

成为我们的资助者或赞助商,以支持我们的工作。

赞助商

站点配置

params.icons.throw_on_error

名称上下文类型必填默认值版本示例
params.icons.throw_on_error-boolean-true--

true 时,若图标不存在,则抛出错误而不是警告。

站点配置示例

hugo.yaml

1params:
2  icons:
3    throw_on_error: true

hugo.toml

1[params]
2  [params.icons]
3    throw_on_error = true

hugo.json

1{
2   "params": {
3      "icons": {
4         "throw_on_error": true
5      }
6   }
7}