From 13a50fc68423294e541e40b3c2370ce030b9ef11 Mon Sep 17 00:00:00 2001 From: Blake Niemyjski Date: Mon, 16 Oct 2023 09:13:10 -0500 Subject: [PATCH] Fixed issue with font awesome fonts not resolving after vendor bundle --- .../ClientApp.angular/grunt/task-configs/copy.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Exceptionless.Web/ClientApp.angular/grunt/task-configs/copy.js b/src/Exceptionless.Web/ClientApp.angular/grunt/task-configs/copy.js index 240d007e2d..b7ee15dbb5 100644 --- a/src/Exceptionless.Web/ClientApp.angular/grunt/task-configs/copy.js +++ b/src/Exceptionless.Web/ClientApp.angular/grunt/task-configs/copy.js @@ -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" }, + ], }, };