We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ae9882 commit 0164c2cCopy full SHA for 0164c2c
pages/Loading/Script-Loading.mdx
@@ -13,7 +13,8 @@ const scriptsLoading = [...scripts].map((obj) => {
13
src: obj.src,
14
async: obj.async,
15
defer: obj.defer,
16
- "render blocking": obj.async || obj.defer ? "" : "🟥",
+ module: obj.type === 'module',
17
+ "render blocking": obj.async || obj.defer || obj.type === 'module' ? "" : "🟥",
18
};
19
return newObj;
20
});
0 commit comments