Open jaydiablo opened 4 years ago
@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
Syntax Error: ModuleNotFoundError: Module not found: Error: Can't resolve '../../node_modules/@coreui/icons/scss/fonts/CoreUI-Icons-Free.eot' in '/app/assets/css'
This helps me:
$coreui-icons-font-path: "../../fonts" !default;
@mrholek I have the same issue with @coreui/icons@^2.0.1 version.
In Laravel vite, I add $coreui-icons-font-path: "@coreui/icons/fonts" !default;
in app.scss
file. It works.
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: