9 lines
230 B
JavaScript
9 lines
230 B
JavaScript
|
|
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
|
||
|
|
});
|
||
|
|
}
|