Custom MIME types

0
Am i able to add custom mime type to the modeller so that it can run certain mime types. I am trying to use this script so that i can have rounded corners on all browser types. http://www.htmlremix.com/css/curved-corner-border-radius-cross-browser. It works locally but when i try to use it in Mendix it doesn't work. I am assuming this is down to the mendix server that is run locally.
asked
1 answers
2

The mime types that the runtime understands can be configured using m2ee. See your m2ee.yaml file, it should contain a section:

mimetypes: 
 bmp: image/bmp 
 log: text/plain

You can add custom mime types there.

answered