From 7c178805eaece0d2b7de07ba1f312fe48826f4f4 Mon Sep 17 00:00:00 2001 From: Asher Date: Thu, 16 Jan 2020 11:44:17 -0600 Subject: [PATCH] Add comment about the manifest's served location Also for #1278. --- src/node/server.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/node/server.ts b/src/node/server.ts index db8c5596..f00fc0db 100644 --- a/src/node/server.ts +++ b/src/node/server.ts @@ -297,6 +297,8 @@ export abstract class Server { switch (base) { case "/": switch (requestPath) { + // NOTE: This must be served at the correct location based on the + // start_url in the manifest. case "/manifest.json": const response = await this.getResource(this.serverRoot, "media", requestPath); response.cache = true;