UNPKG

1.22 kBJavaScriptView Raw
1/**
2 * Created by r9luox on 2016/8/17.
3 * mime types
4 */
5
6
7module.exports = {
8 'css': 'text/css',
9 'less': 'text/css',
10 'scss': 'text/css',
11 'styl': 'text/css',
12 'htm': 'text/html',
13 'html': 'text/html',
14 'shtml': 'text/html',
15 'txt': 'text/plain',
16 'js': 'application/x-javascript',
17
18 //images
19 'bmp': 'image/bmp',
20 'cod': 'image/cis-cod',
21 'gif': 'image/gif',
22 'ief': 'image/ief',
23 'jpe':'image/jpeg',
24 'jpeg': 'image/jpeg',
25 'jpg': 'image/jpeg',
26 'jfif': 'image/pipeg',
27 'svg': 'image/svg+xml',
28 'tif': 'image/tiff',
29 'tiff': 'image/tiff',
30 'ras': 'image/x-cmu-raster',
31 'cmx': 'image/x-cmx',
32 'ico': 'image/x-icon',
33
34 //fonts
35 'woff': 'application/octet-stream',
36 'woff2': 'application/x-font-woff2',
37 'ttf': 'application/octet-stream',
38 'eot': 'application/vnd.ms-fontobject',
39 'otf': 'application/x-font-opentype',
40
41 //offices
42 'ppt': 'application/vnd.ms-powerpoint',
43 'doc': 'application/msword',
44 'pdf': 'application/pdf',
45 'xls': 'application/vnd.ms-excel',
46
47 'wav': 'audio/x-wav',
48 'mp3': 'audio/mpeg',
49 'swf': 'application/x-shockwave-flash'
50};