mirror of
https://github.com/jambonz/webrtc-client.git
synced 2025-12-19 08:27:45 +00:00
16 lines
297 B
Markdown
16 lines
297 B
Markdown
# Build Project
|
|
```sh
|
|
npm i
|
|
npm run build
|
|
```
|
|
|
|
After successfully build, there is generated file dist/webrtc-widget.js
|
|
Copy this file to your project and use as normal HTML tag
|
|
|
|
```html
|
|
import './webrtc-widget/webrtc-widget'
|
|
|
|
<div className="App">
|
|
<webrtc-widget></webrtc-widget>
|
|
</div>
|
|
``` |