mirror of
https://github.com/oven-sh/bun
synced 2026-02-13 12:29:07 +00:00
- 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>
8 lines
115 B
JavaScript
8 lines
115 B
JavaScript
export default {
|
|
port: 3000,
|
|
fetch() {
|
|
import('./nonexistent.js');
|
|
return new Response('hello');
|
|
}
|
|
}
|