diff options
author | wanderer <mjbecze@gmail.com> | 2017-04-14 11:30:15 -0400 |
---|---|---|
committer | wanderer <mjbecze@gmail.com> | 2017-04-14 11:30:15 -0400 |
commit | 58c620e2dd412bd339b3482ccc949471466824c8 (patch) | |
tree | dd440ce0830757b0e6d11fc71acd2fb907ce1109 | |
parent | ba3093c15812305dc6749eec4cdfc37ce69f402e (diff) | |
download | patchfoo-58c620e2dd412bd339b3482ccc949471466824c8.tar.gz patchfoo-58c620e2dd412bd339b3482ccc949471466824c8.zip |
fixed MIME for ico
-rw-r--r-- | lib/serve.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/serve.js b/lib/serve.js index 5c73d46..9c36013 100644 --- a/lib/serve.js +++ b/lib/serve.js @@ -43,6 +43,7 @@ function ctype(name) { case 'css': return 'text/css' case 'png': return 'image/png' case 'json': return 'application/json' + case 'ico': return 'image/x-iconimage/x-icon' } } |