Update src/helpers/ejs.ts
This commit is contained in:
parent
9295f90741
commit
9b72f90d46
1 changed files with 3 additions and 3 deletions
|
@ -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")) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue