Skip to content

Commit

Permalink
Fixed issue with font awesome fonts not resolving after vendor bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
niemyjski committed Oct 16, 2023
1 parent 9e85449 commit 13a50fc
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
module.exports = {
main: {
files: [{ src: ["app.config.js", "*.png", "*.ico", "img/**/{*.png,*.jpg,*.ico}", "lang/**"], dest: "dist/" }],
files: [
{ src: ["app.config.js", "*.png", "*.ico", "img/**/{*.png,*.jpg,*.ico}", "lang/**"], dest: "dist/" },
{ src: ["node_modules/font-awesome/fonts/**"], dest: "dist/fonts/", expand: true, flatten: true, filter: "isFile" },
],
},
};

0 comments on commit 13a50fc

Please sign in to comment.