1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-07 06:30:06 +00:00

feat(express): increase payload max size

This commit is contained in:
Yury Shkoda
2021-10-04 16:55:58 +03:00
parent aad562c0fd
commit 7b403c151e

View File

@@ -3,7 +3,7 @@ import indexRouter from './routes'
const app = express()
app.use(express.json())
app.use(express.json({ limit: '50mb' }))
app.use('/', indexRouter)