forked from probablycorey/baudy
The bundle doesn't use export default, so the server needs to be started explicitly. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
4 lines
71 B
TypeScript
4 lines
71 B
TypeScript
#!/usr/bin/env bun
|
|
import server from './src/server'
|
|
Bun.serve(server)
|