Skip to content

Commit

Permalink
fix(config): fix material font extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
nolimits4web committed Sep 1, 2022
1 parent 7a0f0a6 commit 792ace3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/config/plugin-base.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ module.exports = (userConfig = {}, konstConfig = {}) => {
iosFont = Array.isArray(ff.ios) ? ff.ios.join(', ') : ff.ios;
}
if (ff.material) {
materialFont = Array.isArray(ff.fontFamily.material)
? ff.fontFamily.material.join(', ')
: ff.fontFamily.material;
materialFont = Array.isArray(ff.material)
? ff.material.join(', ')
: ff.material;
}
};
if (
Expand Down

0 comments on commit 792ace3

Please sign in to comment.