From b75c7793a40517ea2f166d99793ba16c23340c7c Mon Sep 17 00:00:00 2001 From: Gen Date: Fri, 22 Mar 2024 00:04:26 -0700 Subject: [PATCH] fix the updated time --- build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.js b/build.js index cf0b985..be73b5d 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().toString(), + new Date().toUTCString(), ); fs.writeFileSync("index.html", file);