Fix(#52): DB parent path not found

This commit is contained in:
SukkaW
2025-01-11 12:37:42 +08:00
parent 2295293639
commit 7b859e7358
3 changed files with 11 additions and 4 deletions

View File

@@ -2,6 +2,8 @@ import path from 'node:path';
export const ROOT_DIR = path.resolve(__dirname, '../..');
export const CACHE_DIR = path.resolve(ROOT_DIR, '.cache');
export const SOURCE_DIR = path.join(ROOT_DIR, 'Source');
export const PUBLIC_DIR = path.resolve(ROOT_DIR, 'public');