diff --git a/api/health.js b/api/health.js new file mode 100644 index 0000000..7466d64 --- /dev/null +++ b/api/health.js @@ -0,0 +1,10 @@ +// Health check endpoint for Vercel +module.exports = function handler(req, res) { + res.json({ + status: 'ok', + timestamp: new Date().toISOString(), + endpoints: { + reportError: '/api/report-error' + } + }) +}