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
Hi, I wanted to use .sass files in my project and I noticed that they aren't handled correctly in sass-bundle.
It is easily fixed by adding:
if (str_contains($path, '.sass')) { return str_replace('.sass', '.css', $path); }
In line 27 of sass-bundle/src/AssetMapper/SassPublicPathAssetPathResolver.php And in line 45 in the same file
sass-bundle/src/AssetMapper/SassPublicPathAssetPathResolver.php
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I wanted to use .sass files in my project and I noticed that they aren't handled correctly in sass-bundle.
It is easily fixed by adding:
In line 27 of
sass-bundle/src/AssetMapper/SassPublicPathAssetPathResolver.php
And in line 45 in the same file
The text was updated successfully, but these errors were encountered: