Dexie Logo
Documentation

db.cloud.options

The configuration options used with db.cloud.configure().

Type

Example

import { Dexie } from "dexie";
import dexieCloud from "dexie-cloud-addon";

const db = new Dexie("myDB", { addons: [dexieCloud] });
db.version(1).stores({
  friends: "@id, age, name",
});
db.cloud.configure({
  databaseUrl: "https://xxxx.dexie.cloud",
});

console.log(`We're using database URL: ${db.cloud.options.databaseUrl}`);

© 2014-2025 Awarica AB

Made with love for great people.

Read Terms & Conditions and Privacy Policy.