You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Including the node_modules/bootstrap-icons/font/bootstrap-icons.scss and compiling with node-sass leads to quotes in the url("...") and the url is bad: /css/fonts/%22bootstrap-icons%22.woff2?24e3eb84d0bcaf83d77f904c78ac1f47
When I change this line:
$bootstrap-icons-font: "bootstrap-icons"!default;
to
$bootstrap-icons-font: bootstrap-icons !default;
The url is correct and can be loaded by the browser: /css/fonts/bootstrap-icons.woff2?24e3eb84d0bcaf83d77f904c78ac1f47
Prerequisites
Describe the issue
Including the
node_modules/bootstrap-icons/font/bootstrap-icons.scss
and compiling with node-sass leads to quotes in the url("...") and the url is bad:/css/fonts/%22bootstrap-icons%22.woff2?24e3eb84d0bcaf83d77f904c78ac1f47
When I change this line:
to
The url is correct and can be loaded by the browser:
/css/fonts/bootstrap-icons.woff2?24e3eb84d0bcaf83d77f904c78ac1f47
Reduced test cases
Install packages:
scss/main.scss
file, include it:Compile:
Include file in
<link href="css/main.css">
and the font url is bad and cant be loaded by the browser:/css/fonts/%22bootstrap-icons%22.woff2?24e3eb84d0bcaf83d77f904c78ac1f47
What operating system(s) are you seeing the problem on?
Windows
What browser(s) are you seeing the problem on?
Chrome
What version of Bootstrap are you using?
v1.10.3
The text was updated successfully, but these errors were encountered: