/** @jsxImportSource mono-jsx */ import { buildRoutes } from 'mono-jsx' import { Home } from './src/pages/home.tsx' const routes = { '/': Home, } const server = Bun.serve({ development: { hmr: true, console: true, }, routes: { ...buildRoutes((req) => ( )), '/index.css': Bun.file('./dist/sensible-ui.css'), }, }) console.log(`Sensible UI dev server running at ${server.url}`)