diff --git a/pages/api/health.js b/pages/api/health.js new file mode 100644 index 0000000..532841a --- /dev/null +++ b/pages/api/health.js @@ -0,0 +1,9 @@ +export default function handler(req, res) { + // Minimal health check - no external dependencies + res.status(200).json({ + status: 'ok', + timestamp: new Date().toISOString(), + method: req.method, + url: req.url + }); +} \ No newline at end of file