diff --git a/CHANGELOG.md b/CHANGELOG.md index 9968f91fccd..a5028e0b04d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,2 @@ - Fix bug in Auth emulator where accounts:lookup is case-sensitive for emails (#8344) +- Fixed an issue where the Storage emulator applied too low of a limit for files uploaded with Content-Type: application/json. (#8355) diff --git a/src/emulator/storage/server.ts b/src/emulator/storage/server.ts index 3462b9687f4..1a24e4074f8 100644 --- a/src/emulator/storage/server.ts +++ b/src/emulator/storage/server.ts @@ -64,6 +64,7 @@ export function createApp( app.use( express.json({ type: ["application/json"], + limit: "130mb", }), );