mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 12:37:20 +00:00
13 lines
247 B
TypeScript
13 lines
247 B
TypeScript
import { createRuntimeApp, serveStaticViaImport } from "bknd/adapter";
|
|
|
|
const app = await createRuntimeApp({
|
|
connection: {
|
|
url: "file:./data.db",
|
|
},
|
|
serveStatic: serveStaticViaImport(),
|
|
});
|
|
|
|
export default {
|
|
fetch: app.fetch,
|
|
};
|