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