From 432dc48c9ac89f629a9e0832fcec00cc4e5dc4a9 Mon Sep 17 00:00:00 2001 From: Mike Johnston Date: Fri, 30 Jan 2026 16:00:12 -0500 Subject: [PATCH] fix FE/BE mix up --- backend/src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/index.js b/backend/src/index.js index dccfd52..789fab6 100644 --- a/backend/src/index.js +++ b/backend/src/index.js @@ -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) {