Last active
March 11, 2024 19:54
-
-
Save wrburgess/6a9472c3c4773fbe62e0e96478fe35ea to your computer and use it in GitHub Desktop.
Bridgetown and Bootstrap Icons installation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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