@@ -23,21 +23,31 @@ const supportedTurbopackNextConfigOptions = [
23
23
'trailingSlash' ,
24
24
'i18n.locales' ,
25
25
'i18n.defaultLocale' ,
26
- 'sassOptions.includePaths' ,
26
+ 'sassOptions' ,
27
+ 'configOrigin' ,
28
+ 'httpAgentOptions' ,
29
+ 'useFileSystemPublicRoutes' ,
30
+ 'generateEtags' ,
31
+ 'assetPrefix' ,
27
32
'experimental.serverComponentsExternalPackages' ,
28
33
'experimental.turbo' ,
29
34
'experimental.mdxRs' ,
30
35
'experimental.forceSwcTransforms' ,
36
+ 'experimental.serverActionsBodySizeLimit' ,
37
+ 'experimental.memoryBasedWorkersCount' ,
31
38
// options below are not really supported, but ignored
32
39
'webpack' ,
33
40
'devIndicators' ,
34
41
'onDemandEntries' ,
42
+ 'excludeDefaultMomentLocales' ,
35
43
'experimental.cpus' ,
36
44
'experimental.sharedPool' ,
37
45
'experimental.proxyTimeout' ,
38
46
'experimental.isrFlushToDisk' ,
39
47
'experimental.workerThreads' ,
40
48
'experimental.caseSensitiveRoutes' ,
49
+ 'experimental.optimizePackageImports' ,
50
+ 'experimental.optimizeServerReact' ,
41
51
]
42
52
43
53
// The following will need to be supported by `next build --turbo`
@@ -54,6 +64,8 @@ const prodSpecificTurboNextConfigOptions = [
54
64
'optimizeFonts' ,
55
65
'poweredByHeader' ,
56
66
'staticPageGenerationTimeout' ,
67
+ 'reactProductionProfiling' ,
68
+ 'cleanDistDir' ,
57
69
'compiler.reactRemoveProperties' ,
58
70
'compiler.removeConsole' ,
59
71
'experimental.turbotrace' ,
@@ -62,6 +74,12 @@ const prodSpecificTurboNextConfigOptions = [
62
74
'experimental.outputFileTracingIgnores' ,
63
75
'experiemental.outputFileTracingIncludes' ,
64
76
'experimental.gzipSize' ,
77
+ 'experimental.useDeploymentId' ,
78
+ 'experimental.useDeploymentIdServerActions' ,
79
+ 'experimental.deploymentId' ,
80
+ 'experimental.serverMinification' ,
81
+ 'experimental.serverSourceMaps' ,
82
+ 'experimenta.trustHostHeader' ,
65
83
]
66
84
67
85
// check for babelrc, swc plugins
0 commit comments