diff --git a/src/App.ts b/src/App.ts
index b2ec986..2711704 100644
--- a/src/App.ts
+++ b/src/App.ts
@@ -30,7 +30,7 @@ class App {
     this.port = port;
 
     app.use(cors());
-    app.use(bodyParser.json());
+    app.use(bodyParser.json({ limit: '10mb' }));
     app.use(express.static('frontend/dist'));
     routes.register(app)
   }