You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that after using code lazy loading, the reference mode of the script has changed to preload import mode like <link rel="modulepreload"="index.js" as="script"/>.
Now I want to change the reference mode of CSS to preload mode, similar to<link rel="preload"="style. css" as="style"/>.
Because i want to solve the problem of blocking page rendering caused by referencing external styles in extreme networks.
Is there any way to do this,
The text was updated successfully, but these errors were encountered:
I noticed that after using code lazy loading, the reference mode of the script has changed to preload import mode like
<link rel="modulepreload"="index.js" as="script"/>
.Now I want to change the reference mode of CSS to preload mode, similar to
<link rel="preload"="style. css" as="style"/>
.Because i want to solve the problem of blocking page rendering caused by referencing external styles in extreme networks.
Is there any way to do this,
The text was updated successfully, but these errors were encountered: