We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
I have a problem on npm run build because there is some var in compiled css Did I miss something ? Anyway, I used sass to compile scss files.
npm run build
argon-design-system-react/src/assets/css/argon-design-system-react.css
Line 12463 in 0a4ea7e
Thanks for this awesome design anyway!
The text was updated successfully, but these errors were encountered:
Hello there, @Dolu89 ,
I am not sure why this happens. I've tried to fix it, but without any prevail, any guidance will be much appreciated.
Best, Manu
Sorry, something went wrong.
I had the same issue, looks like argon-design-system-react.scss file is pointing to the wrong paths.
argon-design-system-react.scss
I update the paths manually, it works but it's not viable with node_modules updates.
Here's the scss file updated:
scss
// Bootstrap Functions -@import "../../../node_modules/bootstrap/scss/functions"; +@import "bootstrap/scss/_functions.scss"; // Theme Variables -@import "argon-design-system/variables"; +@import "./argon-design-system/variables"; // Bootstrap Core -@import "../../../node_modules/bootstrap/scss/bootstrap"; +@import "bootstrap/scss/bootstrap"; // Theme Core -@import "argon-design-system/theme"; +@import "./argon-design-system/theme"; // React Differences -@import "react/react-differences"; +@import "./react/react-differences";
PR is needed
No branches or pull requests
Hello,
I have a problem on
npm run build
because there is some var in compiled cssDid I miss something ?
Anyway, I used sass to compile scss files.
argon-design-system-react/src/assets/css/argon-design-system-react.css
Line 12463 in 0a4ea7e
Thanks for this awesome design anyway!
The text was updated successfully, but these errors were encountered: