Files
bun.sh/app.js
Claude Bot 537459129b Update User-Agent detection logic and improve request handling
- Fixed checkRouteFailures to pass request parameter
- Improved User-Agent detection logic
- Test framework improvements (test currently failing but infrastructure is working)

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-25 05:52:59 +00:00

8 lines
115 B
JavaScript

export default {
port: 3000,
fetch() {
import('./nonexistent.js');
return new Response('hello');
}
}