app.use('/pictures', express.static('pictures'));

This commit is contained in:
Andreas Knuth 2026-02-05 17:54:49 -06:00
parent 8b3c79b5ff
commit 00597a796a
1 changed files with 1 additions and 1 deletions

View File

@ -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');