We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb35a78 commit 5212d09Copy full SHA for 5212d09
packages/vite/src/node/server/environments/runnableEnvironment.ts
@@ -64,6 +64,13 @@ class RunnableDevEnvironment extends DevEnvironment {
64
this._runner = factory(this, this._runnerOptions)
65
return this._runner
66
}
67
+
68
+ override async close(): Promise<void> {
69
+ await super.close()
70
+ if (this._runner) {
71
+ await this._runner.destroy()
72
+ }
73
74
75
76
export type { RunnableDevEnvironment }
0 commit comments