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);