use locale for last updated

This commit is contained in:
Gen 2024-03-19 16:11:58 -07:00
parent 2a339ddbc8
commit 183de98295
No known key found for this signature in database
GPG key ID: CE5EAD50DD5E2278

View file

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