From 90c12fc83c8fdcb18e165f92b3c779e366b071e1 Mon Sep 17 00:00:00 2001 From: Louis Mollick Date: Wed, 30 Oct 2024 21:36:02 -0400 Subject: [PATCH] chore: revert path change --- src/lib/filepath/server-only-utils.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/lib/filepath/server-only-utils.ts b/src/lib/filepath/server-only-utils.ts index 16be72b..39ed8c5 100644 --- a/src/lib/filepath/server-only-utils.ts +++ b/src/lib/filepath/server-only-utils.ts @@ -3,10 +3,7 @@ import { Language } from "@/types/language"; import { getPageFileName, VOLUME_PREFIX } from "@/lib/filepath/utils"; -// export const MANGA_SLUGS_DIR = `${process.cwd()}/images`; -export const MANGA_SLUGS_DIR = `/app/images`; - -console.log(`MANGA_SLUGS_DIR: ${process.cwd()}/images`); +export const MANGA_SLUGS_DIR = `${process.cwd()}/images`; export const getMangaOcrDir = (mangaSlug: string) => `${MANGA_SLUGS_DIR}/${mangaSlug}/${Language.jpJP}/_ocr`;