We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33e98fc commit 678f418Copy full SHA for 678f418
packages/vite/src/node/server/environments/fullBundleEnvironment.ts
@@ -237,13 +237,8 @@ export class FullBundleDevEnvironment extends DevEnvironment {
237
}
238
239
override async close(): Promise<void> {
240
- await Promise.all([
241
- super.close(),
242
- (async () => {
243
- this.memoryFiles.clear()
244
- // TODO: do we need close?
245
- })(),
246
- ])
+ this.memoryFiles.clear()
+ await Promise.all([super.close(), this.devEngine.close()])
247
248
249
private async getRolldownOptions() {
0 commit comments