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
Path resolving does not work if the path contains "base"
styles.scss @import "base/functions";
@import "base/functions";
imports effectively: base/_functions.scss
base/_functions.scss
By whatever reason it tries to open node_modules/base/functions
node_modules/base/functions
Changing the import path to e.g.:
styles.scss @import "components/functions";
@import "components/functions";
it starts to work again.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Path resolving does not work if the path contains "base"
styles.scss
@import "base/functions";
imports effectively:
base/_functions.scss
By whatever reason it tries to open
node_modules/base/functions
Changing the import path to e.g.:
styles.scss
@import "components/functions";
it starts to work again.
The text was updated successfully, but these errors were encountered: