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
If you create a url() from an image that is within your project's src/ folder like:
url()
src/
background-image: url("./assets/1-banner.jpg");
in DoneJS 0.9, the CSS that is injected into the SSR'd page would have:
background-image: url(/src/assets/1-banner.jpg);
in DoneJS 1.0, the SSR'd page has
background-image: url("assets/1-banner.jpg");
which is not correct.
The text was updated successfully, but these errors were encountered:
In done-css 2, this was handled here: https://github.com/donejs/css/blob/v2.0.3/css.js#L107-L109.
Sorry, something went wrong.
done-css is using steal-css now and this code is skipped during SSR: https://github.com/stealjs/steal-css/blob/master/css.js#L157-L163.
This is fixed in steal-css@1.2.2.
No branches or pull requests
If you create a
url()
from an image that is within your project'ssrc/
folder like:in DoneJS 0.9, the CSS that is injected into the SSR'd page would have:
in DoneJS 1.0, the SSR'd page has
which is not correct.
The text was updated successfully, but these errors were encountered: