@2uinc/frontend-component-xpert-chatbot 1.20.0-beta.1 → 1.20.1
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 +13 -1
- package/dist/lib/index.min.js +2663 -2582
- package/package.json +1 -1
package/README.md
CHANGED
@@ -14,7 +14,19 @@
|
|
14
14
|
<body>
|
15
15
|
<script>
|
16
16
|
window.XpertChatbotFrontend = {
|
17
|
-
|
17
|
+
clientId: 'test-chatbot', // Fetch the configuration from the server
|
18
|
+
};
|
19
|
+
</script>
|
20
|
+
<link rel="stylesheet" href="https://chatbot-frontend.prod.ai.2u.com/@latest/index.min.css" />
|
21
|
+
<script defer src="https://chatbot-frontend.prod.ai.2u.com/@latest/index.min.js"></script>
|
22
|
+
</body>
|
23
|
+
|
24
|
+
OR
|
25
|
+
|
26
|
+
<body>
|
27
|
+
<script>
|
28
|
+
window.XpertChatbotFrontend = {
|
29
|
+
xpertKey: 'test-chatbot', // Get client side configuration
|
18
30
|
};
|
19
31
|
</script>
|
20
32
|
<link rel="stylesheet" href="https://chatbot-frontend.prod.ai.2u.com/@latest/index.min.css" />
|