HUGO
Menu
GitHub 87548 stars Mastodon

配置版本

配置版本。
New in v0.153.0

這是默認配置:

versions:
  v1.0.0:
    weight: 0
[versions]
  [versions.'v1.0.0']
    weight = 0
{
   "versions": {
      "v1.0.0": {
         "weight": 0
      }
   }
}

要定義 “v1.0.0” 和 “v2.0.0” 版本:

versions:
  v1.0.0:
    weight: 0
  v2.0.0:
    weight: 0
[versions]
  [versions.'v1.0.0']
    weight = 0
  [versions.'v2.0.0']
    weight = 0
{
   "versions": {
      "v1.0.0": {
         "weight": 0
      },
      "v2.0.0": {
         "weight": 0
      }
   }
}

版本按其 權重 升序排序,然後按 語義版本 降序排序。這會影響構建順序和補集選擇。


Last updated: January 1, 0001
Improve this page