diff --git a/README.md b/README.md index 1be31b2..0827ad9 100644 --- a/README.md +++ b/README.md @@ -639,13 +639,20 @@ server.deploy({port:9922,verbose:true}); css : 'text/css', js : 'text/javascript', json : 'application/json', + xml : 'text/xml', txt : 'text/plain', jpeg : 'image/jpeg', jpg : 'image/jpeg', png : 'image/png', gif : 'image/gif', ico : 'image/x-icon', - appcache: 'text/cache-manifest' + svg : 'image/svg+xml', + appcache: 'text/cache-manifest', + eot : 'application/vnd.ms-fontobject', + otf : 'font/otf', + ttf : 'font/ttf', + woff : 'font/woff', + woff2 : 'font/woff2' }, restrictedType: { diff --git a/server/Config.js b/server/Config.js index 9b21a8f..778cac7 100644 --- a/server/Config.js +++ b/server/Config.js @@ -81,8 +81,9 @@ const defaultConfigs={ contentType : { html : 'text/html', css : 'text/css', - js : 'application/javascript', + js : 'text/javascript', json : 'application/json', + xml : 'text/xml', txt : 'text/plain', jpeg : 'image/jpeg', jpg : 'image/jpeg', @@ -90,7 +91,12 @@ const defaultConfigs={ gif : 'image/gif', ico : 'image/x-icon', svg : 'image/svg+xml', - appcache: 'text/cache-manifest' + appcache: 'text/cache-manifest', + eot : 'application/vnd.ms-fontobject', + otf : 'font/otf', + ttf : 'font/ttf', + woff : 'font/woff', + woff2 : 'font/woff2' }, restrictedType: {