Skip to content

Instantly share code, notes, and snippets.

@wrburgess
Last active March 11, 2024 19:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wrburgess/6a9472c3c4773fbe62e0e96478fe35ea to your computer and use it in GitHub Desktop.
Save wrburgess/6a9472c3c4773fbe62e0e96478fe35ea to your computer and use it in GitHub Desktop.
Bridgetown and Bootstrap Icons installation
// solving issues related to these errors
[Frontend] esbuild: frontend bundling started...
[Frontend] ✘ [ERROR] Could not resolve "./fonts/bootstrap-icons.woff2?24e3eb84d0bcaf83d77f904c78ac1f47"
[Frontend]
[Frontend] frontend/styles/index.scss:11855:11:
[Frontend] 11855 │ src: url("./fonts/bootstrap-icons.woff2?24e3eb84d0bcaf83d77f9...
[Frontend] ╵ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[Frontend]
[Frontend] ✘ [ERROR] Could not resolve "./fonts/bootstrap-icons.woff?24e3eb84d0bcaf83d77f904c78ac1f47"
[Frontend]
[Frontend] frontend/styles/index.scss:11855:98:
[Frontend] 11855 │ ...f2"), url("./fonts/bootstrap-icons.woff?24e3eb84d0bcaf83d77f...
[Frontend] ╵ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[Frontend]
[Frontend] esbuild: build process error, cannot write manifest
// frontend/styles/index.scss
// bootstrap-icons font file reference override in scss
$bootstrap-icons-font-src: url("../../node_modules/bootstrap-icons/font/fonts/bootstrap-icons.woff2") format("woff2"), url("../../node_modules/bootstrap-icons/font/fonts/bootstrap-icons.woff") format("woff");
@import "../../node_modules/bootstrap-icons/font/bootstrap-icons.scss";
@import "~bootstrap/scss/bootstrap";
@import "~bootstrap-icons/font/bootstrap-icons";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment