The serve function of the Bun adapter makes sure to also serve the static files required for
the admin panel.
index.ts
import { serve } from "bknd/adapter/bun";// if the configuration is omitted, it uses an in-memory databaseserve({ connection: { url: "file:data.db", },});
For more information about the connection object, refer to the Database guide.