Skip to content

Commit

Permalink
[fix] Correct the relative path in ./src/index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
jradcliff committed Jan 27, 2025
1 parent e733277 commit fe439a5
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
Expand Up @@ -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, {
Expand Down

0 comments on commit fe439a5

Please sign in to comment.