Don't register double-slashed paths
Alan Pearce alan@alanpearce.eu
Sat, 16 Sep 2023 12:34:43 +0200
1 files changed, 1 insertions(+), 1 deletions(-)
jump to
M src/index.ts → src/index.ts
@@ -88,7 +88,7 @@ } else if (stat.isFile()) { if (pathname.startsWith("index.html")) { const dir = relPath.replace("index.html", ""); registerFile(relPath, dir, absPath, stat); - if (dir !== ".") { + if (dir !== "") { registerFile(relPath, dir + path.sep, absPath, stat); } }