-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ Langflow is a no-code open-source project that empowers developers to build cutt | |
Use the Langflow Widget directly from the CDN by including the following script tag in your HTML: | ||
|
||
```html | ||
<script src="https://cdn.jsdelivr.net/gh/logspace-ai/[email protected].2/dist/build/static/js/bundle.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/logspace-ai/[email protected].3/dist/build/static/js/bundle.min.js"></script> | ||
``` | ||
|
||
### Option 2: Local Build | ||
|
@@ -62,7 +62,7 @@ npm run build | |
```html | ||
<html lang="en"> | ||
<head> | ||
<script src="https://cdn.jsdelivr.net/gh/logspace-ai/[email protected].2/dist/build/static/js/bundle.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/logspace-ai/[email protected].3/dist/build/static/js/bundle.min.js"></script> | ||
</head> | ||
<body> | ||
<langflow-chat | ||
|
@@ -76,7 +76,7 @@ npm run build | |
### on React | ||
Import the js bundle in the index.html of your react project | ||
```html | ||
<script src="https://cdn.jsdelivr.net/gh/logspace-ai/[email protected].2/dist/build/static/js/bundle.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/logspace-ai/[email protected].3/dist/build/static/js/bundle.min.js"></script> | ||
``` | ||
Encapsulate your custom element in a react component | ||
```html | ||
|