Hi Team,
I gave a react app which has static folder. this static folder has a subfolder named js and within that i have my model.json file. this static folder is being served by out by nginx server when we make request for the path js/ .
so in our code we have modelmanager.initialize('js/model.json'). but when i see the request uri. i can see along with window.location.origin there is /null getting added between this path im giving in initialize and window.location.origin. for example say i have my window.location.origin something like this https://test.com/abc/def. but when i see model.json get request in network tab, the request url is https://test.com/abc/def/null/js/model.json. can you please help me on this.