Add base to URL constructor

This commit is contained in:
Vanilagy
2025-08-22 14:22:56 +02:00
parent 2d62395fc0
commit c81600bf17
+1 -1
View File
@@ -191,7 +191,7 @@ export class UrlSource extends Source {
super();
this._url = url instanceof URL ? url : new URL(url);
this._url = url instanceof URL ? url : new URL(url, location.href);
this._options = options;
}