mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-02 16:16:02 +00:00
14 lines
233 B
TypeScript
14 lines
233 B
TypeScript
import { serve } from "bknd/adapter/remix";
|
|
|
|
const handler = serve({
|
|
connection: {
|
|
type: "libsql",
|
|
config: {
|
|
url: "file:test.db"
|
|
}
|
|
}
|
|
});
|
|
|
|
export const loader = handler;
|
|
export const action = handler;
|