We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e05bef9 commit 820fd16Copy full SHA for 820fd16
src/build/plugin-context.ts
@@ -91,7 +91,8 @@ export class PluginContext {
91
return (
92
this.requiredServerFiles.config.outputFileTracingRoot ??
93
// fallback for older Next.js versions that don't have outputFileTracingRoot in the config, but had it in config.experimental
94
- this.requiredServerFiles.config.experimental.outputFileTracingRoot
+ this.requiredServerFiles.config.experimental.outputFileTracingRoot ??
95
+ process.cwd()
96
)
97
}
98
0 commit comments