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 @@ -304,13 +304,13 @@ export default async function getBaseWebpackConfig(
304
304
dev ?: boolean
305
305
entrypoints : webpack . EntryObject
306
306
isDevFallback ?: boolean
307
- pagesDir ? : string
307
+ pagesDir : string | undefined
308
308
reactProductionProfiling ?: boolean
309
309
rewrites : CustomRoutes [ 'rewrites' ]
310
310
originalRewrites : CustomRoutes [ 'rewrites' ] | undefined
311
311
originalRedirects : CustomRoutes [ 'redirects' ] | undefined
312
312
runWebpackSpan : Span
313
- appDir ? : string
313
+ appDir : string | undefined
314
314
middlewareMatchers ?: MiddlewareMatcher [ ]
315
315
noMangling ?: boolean
316
316
jsConfig : any
Original file line number Diff line number Diff line change @@ -692,6 +692,7 @@ export default class HotReloaderWebpack implements NextJsHotReloaderInterface {
692
692
config : this . config ,
693
693
buildId : this . buildId ,
694
694
encryptionKey : this . encryptionKey ,
695
+ appDir : this . appDir ,
695
696
pagesDir : this . pagesDir ,
696
697
rewrites : {
697
698
beforeFiles : [ ] ,
You can’t perform that action at this time.
0 commit comments