I'm writing a Vue JS front-end that is served by a C# webapi app. The webapi is specced to save images to an E: drive folder on its own machine, and provide src links for the UIs to consume.
All well and good, but now I'd like to test while running everything locally (and I don't have access to the E: drive). The problem: I can save images to my C: drive, but (for obvious reasons) the UI browser says "Not allowed to load local resource" when I try to display them.
Is the only solution to create some sort of remote hosting? Or is it possible to "spoof" a remote blob destination while the file is actually stored locally? Like Javascript's URL.createObjectURL method but in the webapi?