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
Hello,
It's not a "big bug". But it took me one hour to understand why my styleUrls scss file was not inlined.
I had to change from
styleUrls : ['image-chooser.scss'] to styleUrls: ['image-chooser.scss']
Yes, I just had to remove the space between 'styleUrls' and ':'
I changed the code in gulp/inline-resources.js function inlineStyle
change regex from : /styleUrls:\s* to/styleUrls\s*:\s*
/styleUrls:\s*
/styleUrls\s*:\s*
Anyway, thanks for your job, great generator
The text was updated successfully, but these errors were encountered:
f934a21
@ixoh — Fix has been added and released as v11.0.1. Thank you for reporting, much appreciated! 👍
Sorry, something went wrong.
No branches or pull requests
Hello,
It's not a "big bug". But it took me one hour to understand why my styleUrls scss file was not inlined.
I had to change from
Yes, I just had to remove the space between 'styleUrls' and ':'
I changed the code in gulp/inline-resources.js function inlineStyle
change regex from :
/styleUrls:\s*
to
/styleUrls\s*:\s*
Anyway, thanks for your job, great generator
The text was updated successfully, but these errors were encountered: