  ```js const configURL = new URL(`${window.location.origin}/${fileName}`); ``` ===> ```js const origin = window.location.origin === 'null' ? window.location.ancestorOrigins[0] : window.location.origin; const configURL = new URL(`${origin}/${fileName}`); ```