Move some files so that deno task dev works

This commit is contained in:
Dylan Pizzo
2025-01-05 22:17:30 -05:00
parent 0da7c3ab23
commit 3bb0308949
46 changed files with 7 additions and 6 deletions

View File

@ -5,10 +5,10 @@ Deno.serve((req: Request) => {
if (pathname.startsWith("/static")) {
return serveDir(req, {
fsRoot: "src/static",
fsRoot: "static",
urlRoot: "static",
});
} else {
return serveFile(req, "src/static/index.html");
return serveFile(req, "static/index.html");
}
});