Our company has implemented an Angular/TypeScript version of the Forge Viewer, currently loading dependencies from Autodesk's server. To ensure these files are always accessible to our customers, we want to host them on our own servers. However, attempting to host a package extracted using the Autodesk Forge Extractor tool locally revealed it only functions with version 2.10
, causing some functionality issues as we require version 2.13
.
Moreover, each extracted package contains models and textures, but since we load our models from our servers, we prefer hosting packages containing only specific files, without creating references to the full model or utilizing the extract tool for all our models.
Is there a reliable method to host the dependencies listed below without storing the complete model or mentioning the exact model?
<link rel="stylesheet" type="text/css" href="https://developer.api.autodesk.com/viewingservice/v1/viewers/style.css" />
<script src="https://developer.api.autodesk.com/viewingservice/v1/viewers/three.min.js?v=2.13.*"></script>
<script src="https://developer.api.autodesk.com/viewingservice/v1/viewers/viewer3D.min.js?v=2.13.*"></script>