-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Default icon path to icon files in SCSS is wrong (Free icons) #20
Comments
@jaydiablo I fixed it in the latest release, can you check if this release is ok? |
@mrholek I have got the similar error in 2.0.0-beta.5 and 2.0.0-rc.0
This helps me: |
@mrholek I have the same issue with @coreui/icons@^2.0.1 version. |
In Laravel vite, I add |
Ran into this yesterday when trying to build these icons. The SASS transpilation step fails because the path defined for the Icon files here: https://github.com/coreui/coreui-icons/blob/master/scss/free/_variables.scss#L2 is incorrect. The
fonts
folder is actually one more level back, so this:$coreui-icons-font-path: "../fonts" !default;
should be
$coreui-icons-font-path: "../../fonts" !default;
Here's the error I was receiving:
The text was updated successfully, but these errors were encountered: