Skip to content

Commit

Permalink
fix: cache the runnable environment module runner (#18215)
Browse files Browse the repository at this point in the history
  • Loading branch information
sheremet-va authored Sep 27, 2024
1 parent fb292f2 commit 95020ab
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ class RunnableDevEnvironment extends DevEnvironment {
this._runner = this._runnerFactory(this)
return this._runner
}
return createServerModuleRunner(this)
this._runner = createServerModuleRunner(this)
return this._runner
}
}

Expand Down

0 comments on commit 95020ab

Please sign in to comment.