Add metadata to query, move metatagging of metadata to metatagger, tweaks to the generate caching so that the cached data becomes more stable (and is GIT-friendlier)

This commit is contained in:
Pieter Vander Vennet 2021-04-25 13:25:03 +02:00
parent 591ab349a6
commit 54f01ba554
7 changed files with 129 additions and 66 deletions

View file

@ -26,6 +26,7 @@ export default class Hash {
}
const hash = new UIEventSource<string>(window.location.hash.substr(1));
hash.addCallback(h => {
console.trace("Hash was changed into ",h)
if (h === "undefined") {
console.warn("Got a literal 'undefined' as hash, ignoring")
h = undefined;