File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -93,8 +93,9 @@ function sdkAlreadyInitialized(): boolean {
93
93
}
94
94
95
95
function addServerIntegrations ( options : NextjsOptions ) : void {
96
- // This value is injected at build time, based on the output directory specified in the build config
97
- const distDirName = ( global as GlobalWithDistDir ) . __rewriteFramesDistDir__ ;
96
+ // This value is injected at build time, based on the output directory specified in the build config. Though a default
97
+ // is set there, we set it here as well, just in case something has gone wrong with the injection.
98
+ const distDirName = ( global as GlobalWithDistDir ) . __rewriteFramesDistDir__ || '.next' ;
98
99
// nextjs always puts the build directory at the project root level, which is also where you run `next start` from, so
99
100
// we can read in the project directory from the currently running process
100
101
const distDirAbsPath = path . resolve ( process . cwd ( ) , distDirName ) ;
You can’t perform that action at this time.
0 commit comments