Add minimal health check API

This commit is contained in:
Randall Stillwell 2025-07-23 09:21:29 -05:00
parent b5e547df7b
commit b4e011e8fa

9
pages/api/health.js Normal file
View file

@ -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
});
}