<script>
debug(
"This document is in *development mode*\nDocument will NOT reload automatically, as `watch` feature is not enabled.",
);
function debug(message) {
console.debug(
"%cDEBUG",
"color: #8F4; background-color: #6826;",
message,
);
}
</script>