File tree 2 files changed +3
-2
lines changed 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
- Improve performance and reliability when deploying multiple 2nd gen functions using single builds. (#6376 )
2
2
- Fixed an issue where ` emulators:export ` did not check if the target folder is empty. (#6313 )
3
- - Fix "Could not find the next executable" on Next.js deployments (#6372 )
3
+ - Fixed "Could not find the next executable" on Next.js deployments (#6372 )
4
+ - Fixed issues caused by breaking changes in Next >=v13.5.0. (#6382 )
Original file line number Diff line number Diff line change @@ -594,7 +594,7 @@ async function getConfig(
594
594
if ( gte ( version , "12.0.0" ) ) {
595
595
const { default : loadConfig } = relativeRequire ( dir , "next/dist/server/config" ) ;
596
596
const { PHASE_PRODUCTION_BUILD } = relativeRequire ( dir , "next/constants" ) ;
597
- config = await loadConfig ( PHASE_PRODUCTION_BUILD , dir , null ) ;
597
+ config = await loadConfig ( PHASE_PRODUCTION_BUILD , dir ) ;
598
598
} else {
599
599
try {
600
600
config = await import ( pathToFileURL ( join ( dir , "next.config.js" ) ) . toString ( ) ) ;
You can’t perform that action at this time.
0 commit comments