route for mini

This commit is contained in:
legop3
2025-12-22 00:39:39 -05:00
parent e3874b6237
commit fe9f1c13e2
+3
View File
@@ -11,6 +11,9 @@ app.use(express.static(config.staticDir));
app.get('/spectate', (req, res) => { app.get('/spectate', (req, res) => {
res.sendFile(path.join(config.staticDir, 'index.html')); 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); const httpServer = http.createServer(app);