website/build.js

9 lines
205 B
JavaScript
Raw Normal View History

2024-03-19 16:01:42 -07:00
const fs = require("fs");
let file = fs.readFileSync("index.html", "utf-8");
file = file.replace(
'<span class="last-updated"></span>',
2024-03-19 16:11:58 -07:00
new Date().toString(),
2024-03-19 16:01:42 -07:00
);
fs.writeFileSync("index.html", file);