Currently, Foundation Icon fonts are copied in the CSS directory.
Instead, we serve them from a dedicated directory.
This change also:
- avoids to copy svgs/ folder
- selects .eot and not .eoff files
Differential D600
Copy correctly Foundation Icon fonts to assets/fonts/ dereckson on Aug 4 2016, 20:31. Authored by Tags None Referenced Files
Subscribers None
Details Currently, Foundation Icon fonts are copied in the CSS directory. Instead, we serve them from a dedicated directory. This change also:
$ gulp build $ cd dist $ tree . ├── assets │ ├── css │ │ └── app.css │ ├── fonts │ │ ├── foundation-icons.eot │ │ ├── foundation-icons.svg │ │ ├── foundation-icons.ttf │ │ └── foundation-icons.woff │ ├── img │ │ ├── 1280px-Beowulf_Manuscript.jpg │ │ ├── logo-nasqueron.png │ │ ├── logo-vikidia.png │ │ ├── logo-wikimedia.png │ │ └── logo-wolfplex.png │ ├── js │ │ └── app.js │ └── scss └── index.html 6 directories, 12 files The extraneous scss/ folder will be handled in a follow-up separate fix.
Diff Detail
|