mirror of
https://github.com/ecomfe/fontmin.git
synced 2026-01-18 14:26:45 +00:00
18 lines
383 B
JavaScript
18 lines
383 B
JavaScript
/**
|
|
* @file mine types
|
|
* @author junmer
|
|
*/
|
|
|
|
/* eslint-env node */
|
|
|
|
module.exports = exports = {
|
|
'.*': 'application/octet-stream',
|
|
'ttf': 'application/font-sfnt',
|
|
'otf': 'application/font-sfnt',
|
|
'woff': 'application/font-woff',
|
|
'woff2': 'application/font-woff2',
|
|
'eot': 'application/octet-stream',
|
|
'svg': 'image/svg+xml',
|
|
'svgz': 'image/svg+xml'
|
|
};
|