安裝 Hugo 圖片模塊

學習如何安裝 Hugo 圖片模塊。

贊助

成為我們的資助者或贊助商,以支持我們的工作。

本頁內容

贊助商

必要條件

導入模塊

hugo.yaml

1module:
2  imports:
3  - path: github.com/hugomods/images

hugo.toml

1[module]
2  [[module.imports]]
3    path = 'github.com/hugomods/images'

hugo.json

1{
2   "module": {
3      "imports": [
4         {
5            "path": "github.com/hugomods/images"
6         }
7      ]
8   }
9}