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
My compiler (winless) doesn't compile if I import icons.less or sprites.less. It shows no error so I tested it with less.js with this result:
b.value is undefined in icons.less @http://127.0.0.1/testing/js/less-1.3.0.min.js:8 t@http://127.0.0.1/testing/js/less-1.3.0.min.js:8 @http://127.0.0.1/testing/js/less-1.3.0.min.js:8 t@http://127.0.0.1/testing/js/less-1.3.0.min.js:8 @http://127.0.0.1/testing/js/less-1.3.0.min.js:8 t@http://127.0.0.1/testing/js/less-1.3.0.min.js:8 @http://127.0.0.1/testing/js/less-1.3.0.min.js:8 ...
I did some research to find the lines which causes this error and discovered that it is a problem with the combination of an image url and a variable.
sprites.less
Line 33: background-image: url(@sprite-image);
icons.less
Line 192: background: url(@icon-image) no-repeat 0 0; Line 202: background: url(@icon-image) no-repeat 0 0; Line 212: background: url(@icon-image) no-repeat 0 0; Line 222: background: url(@icon-image) no-repeat 0 0; Line 236: background: url(@icon-image) no-repeat 0 0;
If I remove these lines it works.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
My compiler (winless) doesn't compile if I import icons.less or sprites.less. It shows no error so I tested it with less.js with this result:
I did some research to find the lines which causes this error and discovered that it is a problem with the combination of an image url and a variable.
sprites.less
icons.less
If I remove these lines it works.
The text was updated successfully, but these errors were encountered: