Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/next/src/server/config-shared.ts
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ export interface ExperimentalConfig {
* analyze module code to determine if it has side effects. This can improve tree shaking
* and bundle size at the cost of some additional analysis.
*
* Defaults to `true`.
* Defaults to `true` in canary builds only
*/
turbopackInferModuleSideEffects?: boolean

Expand Down Expand Up @@ -1576,6 +1576,7 @@ export const defaultConfig = Object.freeze({
mcpServer: true,
turbopackFileSystemCacheForDev: true,
turbopackFileSystemCacheForBuild: false,
turbopackInferModuleSideEffects: !isStableBuild(),
},
htmlLimitedBots: undefined,
bundlePagesRouterDependencies: false,
Expand Down
Loading