Hugo remove categories page

Updated: 21th December 2019
Tags: hugo

If you're making a blog and need only tags like I am, you're maybe wondering how to remove categories listing page.

Remove categories taxonomy completely (config.toml)

[taxonomies]
    tag = "tags"

Remove taxonomy listing pages (like /tags/ and /categories/) but not /tags/mytag/

disableKinds = ["taxonomy"]