Fix hosted MapLibre demo API base and missing Three core module.
CI / test (push) Successful in 4s

This vendors three.core.js required by latest three.module.js and defaults the demo API base to window.location.origin when no local override is saved.

Made-with: Cursor
This commit is contained in:
2026-03-02 22:49:49 +00:00
parent aec12ff6c5
commit d4464461b2
2 changed files with 59474 additions and 0 deletions
+4
View File
@@ -647,4 +647,8 @@ const savedBase = localStorage.getItem("geo_api_base");
if (savedBase) {
apiBaseEl.value = savedBase;
setClientBase(savedBase);
} else {
const defaultBase = window.location.origin;
apiBaseEl.value = defaultBase;
setClientBase(defaultBase);
}
+59470
View File
File diff suppressed because one or more lines are too long