-
Notifications
You must be signed in to change notification settings - Fork 149
New issue
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
Support local assets in stylesheets and inline styles #1573
Comments
I have been trying to go around this issue for a long time now. I am able to solve it via D3js today.
Then by doing the following I am able to put a background image in a div with id divId:
|
It's possible to work around the issue and host these fonts within your data app, but it requires a little bit of juggling. Here's my current approach: (I'm sharing in case it can unblock someone, but it would be better to fix the issue.) |
Thank you for the great framework! I am trying to load local font in my custom @font-face {
font-family: 'Iosevka Drom Web';
font-display: swap;
font-weight: 400;
font-stretch: normal;
font-style: normal;
src: url("./IosevkaDrom-Regular.woff2") format('woff2');
} And getting this error: Is there other way I should try? Self hosting custom fonts is a critical requirement for my projects. It would be nice if there was a way to implement it. |
Did you try the technique I described just above your comment? |
@Fil I did. Does it suppose to work in dev mode, or only in release? |
it should work in preview after you have deployed a first time (since the URL for the font is absolute) |
yes, when fonts are all on the web, I can reference them with |
Framework does static analysis of HTML and JavaScript to find references to local assets, such as linked images and imported JavaScript modules; however, it doesn’t currently perform static analysis of stylesheets and inline styles, so attempting to reference local images and import other local stylesheets currently breaks. Here are a few examples (that can serve as test cases for this feature).
An inline stylesheet that references a local image:
A linked local stylesheet that references a local image:
Alternatively, via
@import
(which is currently also unsupported for local stylesheets, and should be considered part of this issue):And the following stylesheet:
An inline style that references a local image:
Related #415 #416 #423 #467 #474 #786 #788 #1372.
The text was updated successfully, but these errors were encountered: