Added an indexedb database to store uploaded maps into
This commit is contained in:
6
src/database.js
Normal file
6
src/database.js
Normal file
@@ -0,0 +1,6 @@
|
||||
import Dexie from "dexie";
|
||||
|
||||
const db = new Dexie("OwlbearRodeoDB");
|
||||
db.version(1).stores({ maps: "id" });
|
||||
|
||||
export default db;
|
||||
Reference in New Issue
Block a user