You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I use @import local files in my shared file, the relative paths are broken in the code taken from the included file — the points are deleted. This happens only for selectors: after
Here is an example of what is happening:
style.css @import url ('main.css');
The main.css code is initially:
.element: after {
background: url ("../ img / icons / pic.svg");
}
And the output in the style.css file is this:
.element: after {
background: url (img / icons / pic.svg);
}
That is, relative paths have been destroyed, and the image request returns 404 error!
With what it can be connected?
The text was updated successfully, but these errors were encountered:
@KimonoVIP I pushed some changes regarding long standing issues in #52 that sound similar to your issue. Can you please update your plugin to at least version 4.1.1 and let me know if the problem persists? Thanks!
@scniro Updated to version 4.2.0 - it did not help. Anyway, the path to the background image after the assembly is distorted and does not work. So far I have been using this method (
When I use @import local files in my shared file, the relative paths are broken in the code taken from the included file — the points are deleted. This happens only for selectors: after
Here is an example of what is happening:
style.css
@import url ('main.css');
The main.css code is initially:
.element: after {
background: url ("../ img / icons / pic.svg");
}
And the output in the style.css file is this:
.element: after {
background: url (img / icons / pic.svg);
}
That is, relative paths have been destroyed, and the image request returns 404 error!
With what it can be connected?
The text was updated successfully, but these errors were encountered: