Hi Davis!I had the same issue and found it: http://stackoverflow.com/questions/3594823/mime-type-for-woff-fontsHope it helps!Fran
El viernes, 4 de enero de 2013 18:47:13 UTC+1, Davis Ford escribió:
Hi, I'm trying to use Font Awesome with an Express app http://fortawesome.github.com/In Chrome, I am gettingResource interpreted as Font but transferred with MIME type text/html: "http://localhost:9000/font/fontawesome-webfont.woff".
I tried configuring express as:express.static.mime.define({'application/x-font-woff': ['woff']}); express.static.mime.define({'application/x-font-ttf': ['ttf']}); express.static.mime.define({'application/vnd.ms-fontobject': ['eot']}); express.static.mime.define({'font/opentype': ['otf']});..and I am using the static middlewareWhat do I need to get the server to recognize the mime type and set the header appropriately?