Revert fake temp, back to 30s poll

This commit is contained in:
James 2026-02-14 03:08:59 -05:00
parent 180d7091b8
commit 31c55cce3b
1 changed files with 1 additions and 0 deletions

View File

@ -28,6 +28,7 @@ const sseClients = new Set();
// Serve dashboard // Serve dashboard
app.get('/', (req, res) => { app.get('/', (req, res) => {
res.set('Cache-Control', 'no-store');
res.sendFile(path.join(__dirname, 'index.html')); res.sendFile(path.join(__dirname, 'index.html'));
}); });