diff --git a/build.js b/build.js index be73b5d..cf0b985 100644 --- a/build.js +++ b/build.js @@ -3,6 +3,6 @@ const fs = require("fs"); let file = fs.readFileSync("index.html", "utf-8"); file = file.replace( '', - new Date().toUTCString(), + new Date().toString(), ); fs.writeFileSync("index.html", file);