Skip to content

Commit

Permalink
fix: cache the runnable environment module runner
Browse files Browse the repository at this point in the history
  • Loading branch information
sheremet-va committed Sep 27, 2024
1 parent fb292f2 commit a66b4b9
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 a66b4b9

Please sign in to comment.