Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Commit

Permalink
set upload size limit to 25mb
Browse files Browse the repository at this point in the history
  • Loading branch information
dannycoates committed Apr 13, 2017
1 parent 7715ba8 commit 99bb597
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ app.use((req, res, next) => {
});

app.use(bodyParser.urlencoded({extended: false}));
app.use(bodyParser.json({limit: '100mb'}));
app.use(bodyParser.json({limit: '25mb'}));

app.use("/static", express.static(path.join(__dirname, "static"), {
index: false,
Expand Down

0 comments on commit 99bb597

Please sign in to comment.