@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 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