fix FE/BE mix up
All checks were successful
Build Images and Deploy / Update-PROD-Stack (push) Successful in 39s

This commit is contained in:
2026-01-30 16:00:12 -05:00
parent b6527b97cd
commit 432dc48c9a

View File

@@ -74,7 +74,7 @@ app.get('/api/health', (req, res) => {
});
// Serve static frontend files (for production)
const frontendPath = path.join(__dirname, '../../frontend/dist');
const frontendPath = path.join(__dirname, '../frontend/dist');
const frontendExists = fs.existsSync(frontendPath);
if (frontendExists) {