font-glyph-loader
v0.1.0
Published
Webpack loader for extracting glyph from font
Downloads
3
Readme
font-glyph-loader
Webpack loader for extracting subset containing specific glyphs from font. font-glyph-loader is similar to font-subset-loader except:
- The loader works on
glyph
file, not font file. Font is loaded in the same directory using the same filename. - The font subset building can be cachable, Avoiding reduplicate font subset files(increase the size of built files) which are built by the same font and the same glyphs .
Installation
npm i font-glyph-loader -D
Usage
- Create
MyFont.glyph
with glyphs to build font subset with. The raw font file should be also namedMyFont.ttf
in the same directory.
hello, world!
- Loader config in
webpack.config.js
module.exports = {
// ...
module: {
rules: [
{
test: /\.glyph$/,
use: [{
loader: 'file-loader'
}, {
loader: 'font-glyph-loader'
}]
}
]
}
// ...
}
@font-face {
font-family: 'MyFont';
src: url('../fonts/MyFont.glyph') format('truetype'); /* Safari, Android, iOS */
}