@@ -107,7 +107,7 @@ pub struct NextConfig {
107
107
pub i18n : Option < I18NConfig > ,
108
108
cross_origin : Option < CrossOriginConfig > ,
109
109
pub dev_indicators : Option < DevIndicatorsConfig > ,
110
- output : Option < OutputType > ,
110
+ pub output : Option < OutputType > ,
111
111
pub turbopack : Option < TurbopackConfig > ,
112
112
production_browser_source_maps : bool ,
113
113
output_file_tracing_includes : Option < serde_json:: Value > ,
@@ -287,17 +287,14 @@ pub struct I18NConfig {
287
287
}
288
288
289
289
#[ derive(
290
- Clone , Debug , PartialEq , Eq , Serialize , Deserialize , TraceRawVcs , NonLocalValue , OperationValue ,
290
+ Clone , Debug , PartialEq , Serialize , Deserialize , TraceRawVcs , NonLocalValue , OperationValue ,
291
291
) ]
292
292
#[ serde( rename_all = "kebab-case" ) ]
293
293
pub enum OutputType {
294
294
Standalone ,
295
295
Export ,
296
296
}
297
297
298
- #[ turbo_tasks:: value( transparent) ]
299
- pub struct OptionOutputType ( Option < OutputType > ) ;
300
-
301
298
#[ derive(
302
299
Debug ,
303
300
Clone ,
@@ -1868,11 +1865,6 @@ impl NextConfig {
1868
1865
Vc :: cell ( self . cross_origin . clone ( ) )
1869
1866
}
1870
1867
1871
- #[ turbo_tasks:: function]
1872
- pub fn output ( & self ) -> Vc < OptionOutputType > {
1873
- Vc :: cell ( self . output . clone ( ) )
1874
- }
1875
-
1876
1868
#[ turbo_tasks:: function]
1877
1869
pub fn output_file_tracing_includes ( & self ) -> Vc < OptionJsonValue > {
1878
1870
Vc :: cell ( self . output_file_tracing_includes . clone ( ) )
0 commit comments