Skip to content

Commit c045d57

Browse files
committed
increase upload limit on backend
1 parent 5710497 commit c045d57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

studio-background/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ app.use(
2727
origin: "*",
2828
})
2929
);
30-
app.use(express.json());
30+
app.use(express.json({ limit: '10mb' }));
3131

3232
app.get('/', (_req, res) => {
3333
res.send('Hello World!');

0 commit comments

Comments
 (0)