Hi,
I have a site with a custom section projects, in those I use tags, just to display I don’t want a page per tag right now.
I had this config disableKinds = ["RSS", "taxonomy", "taxonomyTerm"]
but Hugo was still including links to /tags, /tags/tag1, /tags/tag2 even though it’s not generating those pages.
So I added:
[taxonomies]
tag = ""
category = "categories"
Now it stops including the links to non-existing /tags pages but now /projects/index.html is broken, the list of projects is not populating.
Why is that? what is the proper way of removing completely the references to /tags which I don’t need? if anything what I’ll need in the future is /projects/tags/*
pages, having pages for /tags makes no sense as I have also /blog section which will include tags in the future.
Thanks