学习如何配置 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}