1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-07-19 05:09:41 +02:00

remove console log

This commit is contained in:
Nikita Melnikov 2022-11-03 01:08:11 +02:00
parent c532007755
commit a3c87bb2c7

View file

@ -88,7 +88,6 @@ function createApp(): express.Express {
if (appConfig.uploads.driver === 'local') {
const uploadsPath = path.join(cwd, appConfig.uploads.local.path);
console.log(uploadsPath);
app.use('/uploads', express.static(uploadsPath));
}