Fix content-encoding check The files named `index.html.br` failed this check and would later not be found, falling back to the default identity encoding
Alan Pearce alan@alanpearce.eu
Sat, 06 Apr 2024 12:15:39 +0200
1 files changed, 1 insertions(+), 1 deletions(-)
jump to
M src/app.ts → src/app.ts
@@ -87,7 +87,7 @@ for (let relPath of await fs.readdir(root, { recursive: true })) { const absPath = path.join(root, relPath); const stat = await fs.stat(absPath); if (stat.isFile()) { - if (relPath.endsWith("index.html")) { + if (relPath.includes("index.html")) { const dir = relPath.replace("index.html", ""); registerFile(relPath, dir, absPath, stat); } else {