Zet - How do I find out what ust template is being used in the front end?
How do I find out what ust template is being used in the front end?
Hack the ust compiler and add a header element after the line that grabs the ust file content.
let txt = fs.readFileSync(path.join(target, file), "utf8");
// ⬇︎ Hack line
txt = `<h6 style="background: white;color: black;">${path.join(target, file)}</h6>\n${ txt}`;
#drains