Files
bknd/examples/remix/app/routes/api.$.ts
2024-11-16 12:01:47 +01:00

14 lines
242 B
TypeScript

import { serve } from "bknd/adapter/remix";
const handler = serve({
connection: {
type: "libsql",
config: {
url: "http://localhost:8080"
}
}
});
export const loader = handler;
export const action = handler;