Skip to content

Commit

Permalink
fix(devkit): add font file extensions to binaryExts in generate-files.ts
Browse files Browse the repository at this point in the history
Add font file extensions to the list of extensions that should not be rendered with ejs

ISSUES CLOSED: #5213
  • Loading branch information
erikagiroux committed Jul 20, 2021
1 parent 2249c89 commit d47f448
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/devkit/src/generators/generate-files.ts
Expand Up @@ -27,6 +27,13 @@ const binaryExts = new Set([
// Java files
'.jar',
'.keystore',

// Font files
'.ttf',
'.otf',
'.woff',
'.woff2',
'.eot',
]);

/**
Expand Down

0 comments on commit d47f448

Please sign in to comment.