學習如何配置 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}