SVG integration

beau_cowan

New member
We created an application that is using .svg images for some interactivity.

When trying to compile it into a .exe, the .svg images are not recognized. Is there something that needs to be done as far as setting up a MIME type or any kind of configuration to make sure that these type of files can work properly?
 
Thank you. Turns out this wasn’t the case. The developer who had created the project was using an AJAX call, which was causing a cross origin error since AJAX doesn’t register file:/// as a protocol.

Is there a way around that? The filepath he was using for the ajax request was a relative path, so I’m assuming that I need to replicate a server for this. Is there a way to do that?
 
Back
Top