shrimp/src/editor/example/server.tsx
2026-01-05 11:30:32 -08:00

15 lines
215 B
TypeScript

import index from './index.html'
const server = Bun.serve({
port: 3000,
routes: {
'/': index,
},
development: {
hmr: true,
console: true,
},
})
console.log(`Editor running at ${server.url}`)