I have no tags and categories on my site. But Hugo generates an empty page when I visit example.com/tags and example.com/categories. I wrote in the robots.txt
For completeness and for my understanding. How would you do this if you had created your own taxonomy but didn’t want to use categories or tags (but still wanted your custom taxonomy?).
“tags” and “categories” are the default taxonomies. To add/remove custom taxonomies, you would need to configure the taxonomies parameter in the site config. For example, below removes the “tags”, and adds “series”, but retains “categories”:
[Taxonomies]
category = "categories"
series = "series"