diff --git a/src/index.ts b/src/index.ts index 344e70e..87364f7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -20,5 +20,5 @@ app.use(cors()); const controllers: IControllerBase[] = container.getAll(ContainerTypes.Controller); controllers.forEach((controller) => controller.register(app)); -functions.runWith({ memory: '512MB' }); +functions.runWith({ memory: '2GB' }); exports.app = functions.https.onRequest(app);