website/build.js
2024-03-19 16:11:58 -07:00

8 lines
205 B
JavaScript

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