The serve function of the Bun adapter makes sure to also serve the static files required for
the admin panel.
Copy
// index.tsimport { 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.Run the application using Bun by executing: