website/build.js
2024-03-22 00:04:26 -07:00

8 lines
208 B
JavaScript

const fs = require("fs");
let file = fs.readFileSync("index.html", "utf-8");
file = file.replace(
'<span class="last-updated"></span>',
new Date().toUTCString(),
);
fs.writeFileSync("index.html", file);