The serve function of the Node adapter makes sure to also serve the static files required for
the admin panel.
server.ts
import { serve } from "bknd/adapter/node";// if the configuration is omitted, it uses an in-memory database/** @type {import("bknd/adapter/node").NodeAdapterOptions} */const config = { connection: { url: "file:data.db", },};serve(config);
For more information about the connection object, refer to the Database guide.