Skip to content

Commit

Permalink
Merge pull request #27 from googleanalytics/pathfix
Browse files Browse the repository at this point in the history
[fix] Correct the relative path in ./src/index.ts
matt-landers authored Jan 27, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents e733277 + fe439a5 commit ca8ff8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ import { parseArgs } from "jsr:@std/cli/parse-args";

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

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

const flags = parseArgs(Deno.args, {

0 comments on commit ca8ff8a

Please sign in to comment.