Replies: 2 comments
-
We had extra time and wanted to talk about import assertions... import package from '/package.json' assert { type: 'json' };
import package from '/package.json'; ---
import scriptUrl from '/script.js' assert { type: 'url' };
import scriptUrl from '/script.js?url';
import script from '/script.js';
--
<script src="local:./script.js"></script>
<script src={await import('./script.js?url')}></script>
<img srcset="2x local:./penguin.png" />
<img srcset={`2x ${await import('./penguin.png')}`} /> |
Beta Was this translation helpful? Give feedback.
0 replies
-
part of discussion, but more process related. Proposal to explicitly include in "new" rfcs: will it introduce ssr blockers, does it remove ssr blockers or will it be ssr neutral. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Agenda
If there is something that you would like to see discussed, please comment below. We will prioritize pending RFC, but if we have time to spare we will open the call up to get attention on and discuss other threads and feature requests.
If there is something else you would like to discuss, please mention it here.
Beta Was this translation helpful? Give feedback.
All reactions