From 00597a796a729491fe10f2f2ab817b2cdcf54842 Mon Sep 17 00:00:00 2001 From: Andreas Knuth Date: Thu, 5 Feb 2026 17:54:49 -0600 Subject: [PATCH] app.use('/pictures', express.static('pictures')); --- bizmatch-server/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bizmatch-server/src/main.ts b/bizmatch-server/src/main.ts index 45796a8..760275b 100644 --- a/bizmatch-server/src/main.ts +++ b/bizmatch-server/src/main.ts @@ -14,7 +14,7 @@ async function bootstrap() { app.useLogger(logger); //app.use('/bizmatch/payment/webhook', bodyParser.raw({ type: 'application/json' })); // Serve static files from pictures directory - // app.use('/pictures', express.static('pictures')); + app.use('/pictures', express.static('pictures')); app.setGlobalPrefix('bizmatch');