You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Today, when I ran hugo server -D with a newer version of Hugo, v0.123.8 extended version, I received a warning message:
WARN DEPRECATED: Kind "taxonomyterm" used in outputs configuration is deprecated, use "taxonomy" instead.
This warning came from gohugoio/hugo#11256. It essentially means that taxonomyTerm should be replaced with taxonomy. In our sampleSite folder, we used both taxonomyTerm and taxonomy, and taxonomy covers more types than taxonomyTerm.
So the question is, is it safe to delete taxonomyTerm? At least, I tested it on my personal blog locally, and it doesn't seem to have any issues, but I could be wrong since I'm not too familiar with DoIt's source code.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Today, when I ran
hugo server -D
with a newer version of Hugo, v0.123.8 extended version, I received a warning message:This warning came from gohugoio/hugo#11256. It essentially means that
taxonomyTerm
should be replaced withtaxonomy
. In oursampleSite
folder, we used bothtaxonomyTerm
andtaxonomy
, andtaxonomy
covers more types thantaxonomyTerm
.DoIt/exampleSite/config/_default/outputs.toml
Lines 1 to 8 in 982b081
So the question is, is it safe to delete
taxonomyTerm
? At least, I tested it on my personal blog locally, and it doesn't seem to have any issues, but I could be wrong since I'm not too familiar with DoIt's source code.Beta Was this translation helpful? Give feedback.
All reactions