Skip to content

Commit

Permalink
fix: script handler path
Browse files Browse the repository at this point in the history
  • Loading branch information
gnlow committed Dec 1, 2023
1 parent 4d63920 commit 89002cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const scriptHandler = async (c: Context) => {
return {
kind: "module",
specifier,
content: await Deno.readTextFile(fromFileUrl(specifier)),
content: await Deno.readTextFile("." + url.pathname),
}
} else {
return {
Expand Down

0 comments on commit 89002cc

Please sign in to comment.