Fix frontend static file paths to point to correct Docker container location

This commit is contained in:
Ryderjj89
2025-09-13 12:33:37 -04:00
parent 2c5dd415c7
commit a26047493a

View File

@@ -13,10 +13,10 @@ app.use(cors());
app.use(express.json()); app.use(express.json());
// Serve static files from the React build // Serve static files from the React build
app.use(express.static(path.join(__dirname, '../frontend/build'))); app.use(express.static(path.join(__dirname, '../../frontend/build')));
// Bible data directory // Bible data directory
const BIBLE_DATA_DIR = path.join(__dirname, '../bible-data'); const BIBLE_DATA_DIR = path.join(__dirname, '../../bible-data');
// Helper function to read markdown files // Helper function to read markdown files
async function readMarkdownFile(filePath) { async function readMarkdownFile(filePath) {
@@ -119,7 +119,7 @@ app.get('/books/:book/:chapter', async (req, res) => {
// Catch-all handler: send back React's index.html for client-side routing // Catch-all handler: send back React's index.html for client-side routing
app.get('*', (req, res) => { app.get('*', (req, res) => {
res.sendFile(path.join(__dirname, '../frontend/build/index.html')); res.sendFile(path.join(__dirname, '../../frontend/build/index.html'));
}); });
// Error handling middleware // Error handling middleware