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
? awaitmetaGlobComponents[componentPath]()// We need to call `await metaGlobComponents[componentPath]()` in development as it is `eager:false`
25
-
: metaGlobComponents[componentPath];// We need to directly access the `metaGlobComponents[componentPath]` expression in preview/production as it is `eager:true`
26
-
componentCodeSig.value=isDev
27
-
? awaitrawComponents[componentPath]()
28
-
: rawComponents[componentPath];
22
+
MetaGlobComponentSig.value=awaitmetaGlobComponents[componentPath]();// We need to call `await metaGlobComponents[componentPath]()` in development as it is `eager:false`
0 commit comments