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
{{ message }}
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
The task fails to rewrite URLs if the asset is not present. While processing the stylesheet the code does :
// If that didn't work, try finding the image relative to
// the current file instead.
if(!fs.existsSync(loc)) {
loc = path.resolve(__dirname + img);
}
This not only makes it cumbersome to integrate on the grunt build system, as i have to create a number of temporary directories and copy the assets there, just to delete everything afterwords, as it creates a totally bogus location if those assets are not actually there.
The text was updated successfully, but these errors were encountered:
The task fails to rewrite URLs if the asset is not present. While processing the stylesheet the code does :
This not only makes it cumbersome to integrate on the grunt build system, as i have to create a number of temporary directories and copy the assets there, just to delete everything afterwords, as it creates a totally bogus location if those assets are not actually there.
The text was updated successfully, but these errors were encountered: