mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-13 03:40:48 +00:00
fix: increase collaborator body parser limit (#7744)
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com>
This commit is contained in:
parent
b08af3d995
commit
f91c0a4097
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user