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