Skip to content

Commit

Permalink
chore: replace the CDN from unpkg to jsdelivr
Browse files Browse the repository at this point in the history
  • Loading branch information
Desplandis committed Apr 2, 2024
1 parent d4779cc commit c7ff763
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions examples/effects_stereo.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@0.159.0/build/three.module.js",
"three/addons/": "https://unpkg.com/three@0.159.0/examples/jsm/"
"three": "https://cdn.jsdelivr.net/npm/three@0.159.0/build/three.module.js",
"three/addons/": "https://cdn.jsdelivr.net/npm/three@0.159.0/examples/jsm/"
}
}
</script>
Expand Down
4 changes: 2 additions & 2 deletions examples/misc_collada.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@0.159.0/build/three.module.js",
"three/addons/": "https://unpkg.com/three@0.159.0/examples/jsm/"
"three": "https://cdn.jsdelivr.net/npm/three@0.159.0/build/three.module.js",
"three/addons/": "https://cdn.jsdelivr.net/npm/three@0.159.0/examples/jsm/"
}
}
</script>
Expand Down
2 changes: 1 addition & 1 deletion examples/view_3d_map_webxr.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<script type="importmap">
{
"imports": {
"three/addons/": "https://unpkg.com/three@0.159.0/examples/jsm/"
"three/addons/": "https://cdn.jsdelivr.net/npm/three@0.159.0/examples/jsm/"
}
}
</script>
Expand Down
4 changes: 2 additions & 2 deletions examples/view_multi_25d.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@0.159.0/build/three.module.js",
"three/addons/": "https://unpkg.com/three@0.159.0/examples/jsm/"
"three": "https://cdn.jsdelivr.net/npm/three@0.159.0/build/three.module.js",
"three/addons/": "https://cdn.jsdelivr.net/npm/three@0.159.0/examples/jsm/"
}
}
</script>
Expand Down
2 changes: 1 addition & 1 deletion src/Parser/LASLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { Las } from 'copc';
*/
class LASLoader {
constructor() {
this._wasmPath = 'https://unpkg.com/laz-perf@0.0.6/lib/';
this._wasmPath = 'https://cdn.jsdelivr.net/npm/laz-perf@0.0.6/lib/';
this._wasmPromise = null;
}

Expand Down

0 comments on commit c7ff763

Please sign in to comment.