File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
crates/next-core/src/next_server Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -447,10 +447,10 @@ pub async fn get_server_module_options_context(
447447 webpack_loader_options ( project_path, next_config, false , conditions) . await ?;
448448
449449 let tree_shaking_mode_for_user_code = * next_config
450- . tree_shaking_mode_for_user_code ( Vc :: cell ( next_mode. is_development ( ) ) )
450+ . tree_shaking_mode_for_user_code ( next_mode. is_development ( ) )
451451 . await ?;
452452 let tree_shaking_mode_for_foreign_code = * next_config
453- . tree_shaking_mode_for_foreign_code ( Vc :: cell ( next_mode. is_development ( ) ) )
453+ . tree_shaking_mode_for_foreign_code ( next_mode. is_development ( ) )
454454 . await ?;
455455 let use_swc_css = * next_config. use_swc_css ( ) . await ?;
456456 let versions = RuntimeVersions ( Default :: default ( ) ) . cell ( ) ;
You can’t perform that action at this time.
0 commit comments