feat: Add numerous Magic: The Gathering card metadata and image files.
Some checks failed
Build and Deploy / build (push) Failing after 50s

This commit is contained in:
2025-12-17 18:12:35 +01:00
parent da3f7fa137
commit 2869c35885
4 changed files with 59 additions and 23 deletions

View File

@@ -37,6 +37,7 @@ app.use(express.json({ limit: '50mb' })); // Increase limit for large card lists
// Serve static images (Nested)
app.use('/cards', express.static(path.join(__dirname, 'public/cards')));
app.use('/images', express.static(path.join(__dirname, 'public/images')));
// API Routes
app.get('/api/health', (_req: Request, res: Response) => {