From e2d354c8f2d646bf0f11f7ac48025c5f61169006 Mon Sep 17 00:00:00 2001 From: Asher Date: Thu, 16 Jan 2020 12:11:06 -0600 Subject: [PATCH] Move manifest icon to the root as well --- src/node/server.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/node/server.ts b/src/node/server.ts index f00fc0db..bce26612 100644 --- a/src/node/server.ts +++ b/src/node/server.ts @@ -300,6 +300,7 @@ export abstract class Server { // NOTE: This must be served at the correct location based on the // start_url in the manifest. case "/manifest.json": + case "/code-server.png": const response = await this.getResource(this.serverRoot, "media", requestPath); response.cache = true; return response;