Update src/helpers/ejs.ts

This commit is contained in:
creations 2025-02-27 18:39:32 +00:00
parent 9295f90741
commit 9b72f90d46

View file

@ -1,5 +1,5 @@
import { renderFile } from "ejs"; import { renderFile } from "ejs";
import { join } from "path"; import { resolve } from "path";
export async function renderEjsTemplate( export async function renderEjsTemplate(
viewName: string | string[], viewName: string | string[],
@ -9,9 +9,9 @@ export async function renderEjsTemplate(
let templatePath: string; let templatePath: string;
if (Array.isArray(viewName)) { if (Array.isArray(viewName)) {
templatePath = join(__dirname, "..", "views", ...viewName); templatePath = resolve("src", "views", ...viewName);
} else { } else {
templatePath = join(__dirname, "..", "views", `${viewName}`); templatePath = resolve("src", "views", viewName);
} }
if (!templatePath.endsWith(".ejs")) { if (!templatePath.endsWith(".ejs")) {