diff --git a/src/node/server.ts b/src/node/server.ts index c73498c9..5e3b7cdf 100644 --- a/src/node/server.ts +++ b/src/node/server.ts @@ -197,7 +197,7 @@ export abstract class Server { protected async getTarredResource(...parts: string[]): Promise { const filePath = this.ensureAuthorizedFilePath(...parts); - return { stream: tarFs.pack(filePath), filePath, mime: "application/tar" }; + return { stream: tarFs.pack(filePath), filePath, mime: "application/tar", cache: true }; } protected ensureAuthorizedFilePath(...parts: string[]): string {