We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6536db1 commit 1411b1bCopy full SHA for 1411b1b
packages/node_modules/pouchdb-node/src/index.js
@@ -1,10 +1,12 @@
1
import PouchDB from 'pouchdb-core';
2
3
+import NodeSqlitePouch from 'pouchdb-adapter-nodesqlite';
4
import HttpPouch from 'pouchdb-adapter-http';
5
import mapreduce from 'pouchdb-mapreduce';
6
import replication from 'pouchdb-replication';
7
-PouchDB.plugin(HttpPouch)
8
+PouchDB.plugin(NodeSqlitePouch)
9
+ .plugin(HttpPouch)
10
.plugin(mapreduce)
11
.plugin(replication);
12
0 commit comments