fix: increase collaborator body parser limit (#7744)

Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com>
This commit is contained in:
Alexander Onnikov 2025-01-21 16:49:31 +07:00 committed by GitHub
parent b08af3d995
commit f91c0a4097
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -48,7 +48,8 @@ export async function start (ctx: MeasureContext, config: Config, storageAdapter
const app = express()
app.use(cors())
app.use(bp.json())
app.use(express.json({ limit: '10mb' }))
app.use(bp.json({ limit: '10mb' }))
const extensionsCtx = ctx.newChild('extensions', {})
const transformer = new MarkupTransformer()