You can include tinper-bee using a CDN. You can either reference a specific version or always use the latest version.
Note: When using the CDN approach, you must configure your Webpack externals to map the module name to the global variable TinperBee.
<!-- CSS: Reference specific version or latest -->
<link href="//design.yonyoucloud.com/static/tinper-bee/[VERSION]/assets/tinper-bee.css">
<link href="//design.yonyoucloud.com/static/tinper-bee/latest/assets/tinper-bee.css">
<!-- JS: Reference specific version or latest -->
<script src="//design.yonyoucloud.com/static/tinper-bee/[VERSION]/build/tinper-bee.js"></script>
<script src="//design.yonyoucloud.com/static/tinper-bee/latest/build/tinper-bee.js"></script>
// Webpack configuration
externals: {
'tinper-bee': 'TinperBee'
}