Skip to content

Commit ca8ff8a

Browse files
authored
Merge pull request #27 from googleanalytics/pathfix
[fix] Correct the relative path in ./src/index.ts
2 parents e733277 + fe439a5 commit ca8ff8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { parseArgs } from "jsr:@std/cli/parse-args";
44

55
const __dirname = path.dirname(path.fromFileUrl(import.meta.url));
66

7-
const viewpath = Deno.cwd() + "/src/public/";
7+
const viewpath = Deno.cwd() + "/public/";
88
const eta = new Eta({ views: viewpath, cache: true });
99

1010
const flags = parseArgs(Deno.args, {

0 commit comments

Comments
 (0)