Fix NKJV directory path in backend - was looking in ../ instead of ../../
This commit is contained in:
@@ -34,7 +34,7 @@ app.use(express.static(path.join(__dirname, '../../frontend/build')));
|
||||
|
||||
// Bible data directories
|
||||
const ESV_DATA_DIR = path.join(__dirname, '../../bible-data'); // ESV from mdbible
|
||||
const NKJV_DATA_DIR = path.join(__dirname, '../NKJV'); // NKJV local files
|
||||
const NKJV_DATA_DIR = path.join(__dirname, '../../NKJV'); // NKJV local files
|
||||
|
||||
// Initialize search engines for each version
|
||||
const esvSearchEngine = ESV_DATA_DIR ? new BibleSearchEngine(ESV_DATA_DIR) : null;
|
||||
|
||||
Reference in New Issue
Block a user