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
Copy file name to clipboardExpand all lines: crates/next-core/src/next_client_reference/ecmascript_client_reference/ecmascript_client_reference_proxy_module.rs
let server_module_path = &*self.server_module_ident.path().to_string().await?;
69
69
70
+
let is_async = self.client_module.get_async_module().await?.is_some();
71
+
let async_op = if is_async {"async"}else{""};
72
+
70
73
// Adapted from https://github.com/facebook/react/blob/c5b9375767e2c4102d7e5559d383523736f1c902/packages/react-server-dom-webpack/src/ReactFlightWebpackNodeLoader.js#L323-L354
0 commit comments