File tree 1 file changed +25
-0
lines changed
src/main/clojure/cljs/repl
1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 37
37
{" .html" " text/html"
38
38
" .css" " text/css"
39
39
40
+ " .ttf" " font/ttf"
41
+ " .otf" " font/otf"
42
+
43
+ " .pdf" " application/pdf"
44
+
40
45
" .jpg" " image/jpeg"
41
46
" .png" " image/png"
42
47
" .gif" " image/gif"
43
48
" .svg" " image/svg+xml"
44
49
50
+ " .mp4" " video/mp4"
51
+ " .m4a" " audio/m4a"
52
+ " .m4v" " video/mp4"
53
+ " .mp3" " audio/mpeg"
54
+ " .mpeg" " video/mpeg"
55
+ " .wav" " audio/wav"
56
+
45
57
" .js" " text/javascript"
46
58
" .json" " application/json"
47
59
" .clj" " text/x-clojure"
53
65
(def mime-type->encoding
54
66
{" text/html" " UTF-8"
55
67
" text/css" " UTF-8"
68
+
69
+ " font/ttf" " ISO-8859-1"
70
+ " font/otf" " ISO-8859-1"
71
+
72
+ " application/pdf" " ISO-8859-1"
73
+
56
74
" image/jpeg" " ISO-8859-1"
57
75
" image/png" " ISO-8859-1"
58
76
" image/gif" " ISO-8859-1"
59
77
" image/svg+xml" " UTF-8"
78
+
79
+ " video/mp4" " ISO-8859-1"
80
+ " audio/m4a" " ISO-8859-1"
81
+ " audio/mpeg" " ISO-8859-1"
82
+ " video/mpeg" " ISO-8859-1"
83
+ " audio/wav" " ISO-8859-1"
84
+
60
85
" text/javascript" " UTF-8"
61
86
" text/x-clojure" " UTF-8"
62
87
" application/json" " UTF-8" })
You can’t perform that action at this time.
0 commit comments