From c13a579b0b8befb404adb4248b9f9fa3fdde80dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=F0=93=8D=BC?= <143974574+xojw@users.noreply.github.com> Date: Thu, 10 Apr 2025 23:47:07 -0500 Subject: [PATCH] waves --- index.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/index.mjs b/index.mjs index 08f4c808..f72db9b6 100644 --- a/index.mjs +++ b/index.mjs @@ -88,6 +88,7 @@ if (cluster.isPrimary) { app.get("/g", (req, res) => res.sendFile(path.join(publicPath, "!.html"))); app.get("/a", (req, res) => res.sendFile(path.join(publicPath, "!!.html"))); app.get("/ai", (req, res) => res.sendFile(path.join(publicPath, "!!!.html"))); + app.get("/resent", (req, res) => res.sendFile(path.join(publicPath, "resent", "index.html"))); app.use((req, res) => res.status(404).sendFile(path.join(publicPath, "404.html"))); const server = createServer(app);