From fe9f1c13e2be8cd973f8831737d4f600d4a981ea Mon Sep 17 00:00:00 2001 From: legop3 Date: Mon, 22 Dec 2025 00:39:39 -0500 Subject: [PATCH] route for mini --- server/src/globals/http.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server/src/globals/http.js b/server/src/globals/http.js index 23cbd997..7b2c7c4b 100644 --- a/server/src/globals/http.js +++ b/server/src/globals/http.js @@ -11,6 +11,9 @@ app.use(express.static(config.staticDir)); app.get('/spectate', (req, res) => { res.sendFile(path.join(config.staticDir, 'index.html')); }); +app.get('/mini', (req, res) => { + res.sendFile(path.join(config.staticDir, 'index.html')); +}); const httpServer = http.createServer(app);