From 97659bf32c64f8ab868f0a54ce58a45eec83bd4d Mon Sep 17 00:00:00 2001
From: Adam Piontek <adam@73k.us>
Date: Thu, 25 Feb 2021 16:05:35 -0500
Subject: [PATCH] changed bootstrap icon svg name prefix

---
 assets/webpack.config.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/assets/webpack.config.js b/assets/webpack.config.js
index 11338c3..3f2c2d7 100644
--- a/assets/webpack.config.js
+++ b/assets/webpack.config.js
@@ -45,7 +45,7 @@ module.exports = (env, options) => {
             publicPath: "../images/",
             symbolId: (filePath) => {
               if (filePath.includes("bootstrap-icons")) {
-                return `bsi-${path.basename(filePath).slice(0, -4)}`;
+                return `bi-${path.basename(filePath).slice(0, -4)}`;
               } else if (filePath.includes("@fortawesome")) {
                 if (filePath.includes("brands")) {
                   return `fab-${path.basename(filePath).slice(0, -4)}`;