I can load and view my .nrrd file with no problem in the development local environment in asp.net core, but when I push to Azure and view the site I get an error "Uncaught TypeError: can't access property "split", d is null parse". The network status of the file is a 200 OK.
I have the same problem when using the THREE.js NRRD loader. As it working in the ASP.NET-Core local environment, I do not think it is a mapping issue. But just in case I am using
provider.Mappings[".nrrd"] = "application/octet-stream";
I also used
provider.Mappings[".nrrd"] = "text/plain";
and they both work locally. This leads me to think it is azure related, but I also have no idea how it is.
Any help is much obliged. Thanks in advance.