deckhearth/api/simple.ts
Randall Stillwell b7c6e674a6 Simplify Vercel configuration and add basic test endpoint
🔧 Configuration Changes:
- Remove specific runtime version from vercel.json
- Remove buildCommand that might be causing conflicts
- Let Vercel use default Node.js runtime settings

🧪 Simple Test Endpoint:
- Add /api/simple with minimal dependencies
- Use traditional Vercel function signature (req, res)
- No imports or complex operations to isolate the issue

This should help identify if the problem is with our function configuration, imports, or Vercel setup.
2025-07-22 06:42:19 -05:00

6 lines
No EOL
166 B
TypeScript

export default function handler(req: any, res: any) {
res.status(200).json({
message: 'Simple endpoint works!',
timestamp: new Date().toISOString()
});
}