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
Is there a way to preserve the paths to assets like (png,svg,..) when opening a new window?
none of my <img> tags can resolve src filed.
<img>
src
The text was updated successfully, but these errors were encountered:
I have the same issue, but in my case, I work with SVGs.
The only possible solution I see is to use absolute paths, and not relative.
So, instead of using path like /assets/something.svg, we need to use something like http://foo.bar/assets/something.svg.
/assets/something.svg
http://foo.bar/assets/something.svg
Sorry, something went wrong.
An alternative approach is to keep the paths relative but set the base element in the page's header. See code sample here: #104 (comment)
No branches or pull requests
Is there a way to preserve the paths to assets like (png,svg,..) when opening a new window?
none of my
<img>
tags can resolvesrc
filed.The text was updated successfully, but these errors were encountered: