I need to update the @font-face src path in my bootstrap-icons to ensure it displays correctly in my index.html
My process involves using sass and Laravel Mix to compile to CSS.
This is the content of my src/sass/app.scss file:
@import "~bootstrap-icons/font/bootstrap-icons";
This is what my index.html file looks like:
<i class="bi bi-archive-fill"></i>
Here is an overview of my file structure :
my-app/
├── dist/
│ ├── assets/
│ │ ├── css/
│ │ │ ├── app.css
│ ├── fonts/
│ │ ├── vendor/
│ │ │ ├── bootstrap-icons/
│── src/sass/
│ ├── app.scss
├── index.html