loadable-components
loadable-components copied to clipboard
How to change referencing external styles to preload mode
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,