Closed patg75 closed 1 month ago
PS. Using
"{content.publishDate}-{content.id}"
works nicely but
"{content.publishDate}-{content.name}"
doesnt. Same error.
Hello, you are getting the error because content.dir.name.format
must include at least one of the unique identifiers content.id
or content.slug
.
when using
content.dir.name.format = "{content.publishDate}[ - ]?{content.name}"
I receive the following error:Using .id instead of .publishDate works fine as intended - same as when leaving it empty.