mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
Use this.dir to join the resolved path
This commit is contained in:
parent
f670412c77
commit
83b5c13810
|
@ -35,7 +35,7 @@ export default class Server {
|
|||
this.http = null
|
||||
const phase = dev ? PHASE_DEVELOPMENT_SERVER : PHASE_PRODUCTION_SERVER
|
||||
this.nextConfig = loadConfig(phase, this.dir, conf)
|
||||
this.distDir = join(dir, this.nextConfig.distDir)
|
||||
this.distDir = join(this.dir, this.nextConfig.distDir)
|
||||
|
||||
this.hotReloader = dev ? this.getHotReloader(this.dir, { quiet, config: this.nextConfig }) : null
|
||||
|
||||
|
|
Loading…
Reference in a new issue