fix: update database URL to remove 'file:' prefix in examples

This commit is contained in:
Jonas Perusquia Morales
2026-03-24 13:30:54 -06:00
parent feb3911d46
commit dc8aca6a97
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ import { type BunBkndConfig, serve } from "bknd/adapter/bun";
// this is optional, if omitted, it uses an in-memory database // this is optional, if omitted, it uses an in-memory database
const config: BunBkndConfig = { const config: BunBkndConfig = {
connection: { connection: {
url: "file:data.db", url: "data.db",
}, },
config: { config: {
media: { media: {
+1 -1
View File
@@ -7,7 +7,7 @@ import { serve } from "bknd/adapter/node";
/** @type {import("bknd/adapter/node").NodeBkndConfig} */ /** @type {import("bknd/adapter/node").NodeBkndConfig} */
const config = { const config = {
connection: { connection: {
url: "file:data.db", url: "data.db",
}, },
config: { config: {
media: { media: {