File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -303,8 +303,8 @@ pub async fn get_client_module_options_context(
303
303
config_location : PostCssConfigLocation :: ProjectPath ,
304
304
..postcss_transform_options. clone ( )
305
305
} ;
306
- let enable_postcss_transform = None ;
307
- let enable_foreign_postcss_transform = None ;
306
+ let enable_postcss_transform = Some ( postcss_transform_options . resolved_cell ( ) ) ;
307
+ let enable_foreign_postcss_transform = Some ( postcss_foreign_transform_options . resolved_cell ( ) ) ;
308
308
309
309
let source_maps = if * next_config. client_source_maps ( mode) . await ? {
310
310
SourceMapsType :: Full
Original file line number Diff line number Diff line change @@ -486,8 +486,8 @@ pub async fn get_server_module_options_context(
486
486
config_location : PostCssConfigLocation :: ProjectPath ,
487
487
..postcss_transform_options. clone ( )
488
488
} ;
489
- let enable_postcss_transform = None ;
490
- let enable_foreign_postcss_transform = None ;
489
+ let enable_postcss_transform = Some ( postcss_transform_options . resolved_cell ( ) ) ;
490
+ let enable_foreign_postcss_transform = Some ( postcss_foreign_transform_options . resolved_cell ( ) ) ;
491
491
492
492
let mut conditions = vec ! [ mode. await ?. condition( ) . into( ) ] ;
493
493
conditions. extend (
You can’t perform that action at this time.
0 commit comments