Skip to content

Instantly share code, notes, and snippets.

@Tonel
Last active August 20, 2022 03:36
Show Gist options
  • Save Tonel/a0d76a7f7673b17c92b12d6b9cba8557 to your computer and use it in GitHub Desktop.
Save Tonel/a0d76a7f7673b17c92b12d6b9cba8557 to your computer and use it in GitHub Desktop.
// index.js or server.js
const express = require("express")
// ...
const app = express()
// ...
// fixing "413 Request Entity Too Large" errors
app.use(express.json({limit: "10mb", extended: true}))
app.use(express.urlencoded({limit: "10mb", extended: true, parameterLimit: 50000}))
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment