@trifle/trifle-hub 1.0.91 → 1.0.93
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -3
- package/dist/{TrifleGuide-sLZDgH2W.js → TrifleGuide-DpebN_eY.js} +1 -1
- package/dist/{ccip-DvQq9tlY.js → ccip-DUqsgb5s.js} +1 -1
- package/dist/{index-DR_p-Aao.js → index-CoBS0Qib.js} +1066 -1048
- package/dist/index.es.js +5 -5
- package/dist/index.umd.js +159 -159
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -6,10 +6,10 @@ Install the TrifleHub plugin using npm or yarn:
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
# Using npm
|
|
9
|
-
npm install @trifle/hub
|
|
9
|
+
npm install @trifle/trifle-hub
|
|
10
10
|
|
|
11
11
|
# Using yarn
|
|
12
|
-
yarn add @trifle/hub
|
|
12
|
+
yarn add @trifle/trifle-hub
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
## Configuration and Setup
|
|
@@ -19,7 +19,7 @@ Import and register the TrifleHub plugin in your Vue application:
|
|
|
19
19
|
```js
|
|
20
20
|
import { createApp } from 'vue'
|
|
21
21
|
import App from './App.vue'
|
|
22
|
-
import TrifleHubVuePlugin from '@trifle/hub'
|
|
22
|
+
import TrifleHubVuePlugin from '@trifle/trifle-hub'
|
|
23
23
|
|
|
24
24
|
const app = createApp(App)
|
|
25
25
|
|
|
@@ -31,6 +31,8 @@ app.use(TrifleHubVuePlugin, {
|
|
|
31
31
|
// Other ReOWN AppKit configuration options
|
|
32
32
|
},
|
|
33
33
|
|
|
34
|
+
connectors: [],
|
|
35
|
+
|
|
34
36
|
// Optional: Backend URL (defaults to 'https://bot-staging.trifle.life')
|
|
35
37
|
backendUrl: 'https://bot-staging.trifle.life',
|
|
36
38
|
|