自サイトのネットワーク見てたら X-Robots-Tag
に、noindex, nofollow
がなかったことに気付き(あまり拾われたくはないサイトだった)これらを設定したかったんだけど方法がわからなかったので調べたら、プロジェクトルートにvercel.jsonを置くことで設定することが出来たらしい。
{
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "X-Robots-Tag",
"value": "noindex, nofollow, noarchive"
}
]
}
]
}
robots.txtをHugoのプロジェクトで置きたかったらlayoutsディレクトリのなかに置く。
robots.txt template lookup orderYou may overwrite the internal template with a custom template. Hugo selects the template using this lookup order:
/layouts/robots.txt
/themes/<THEME>/layouts/robots.txt
ひとまずこれで様子を見ます。