mirror of https://gitlab.com/ecentrics/concordia
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
275 B
13 lines
275 B
6 years ago
|
// OrbitDB uses Pubsub which is an experimental feature and need to be turned on manually.
|
||
|
const ipfsOptions = {
|
||
|
EXPERIMENTAL: {
|
||
|
pubsub: true
|
||
|
}, config: {
|
||
|
Addresses: {
|
||
|
Swarm: [
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default ipfsOptions;
|