// Tiny demo script — deliberately written with comments and loose whitespace so the
// effect of `Server::with_minify()` is visible in the served bytes (check the response
// size, or view-source, and compare against this file on disk).
functionannounceLoad(){// Find the footer and note that JS actually ran, not just parsed.
varfooter=document.querySelector("footer p");if(footer){footer.textContent+=" (app.js loaded)";}}document.addEventListener("DOMContentLoaded", announceLoad);