From 674143b023016a62cbae24c9e789b98c887e8ced Mon Sep 17 00:00:00 2001 From: AjaySDwivedi1 Date: Sun, 21 Apr 2024 20:36:12 -0400 Subject: [PATCH] Decrease initial memory pages to 1 --- compiler/src/utils/config.re | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/src/utils/config.re b/compiler/src/utils/config.re index 8bcca63f96..19d778fab9 100644 --- a/compiler/src/utils/config.re +++ b/compiler/src/utils/config.re @@ -364,7 +364,7 @@ let initial_memory_pages = ~names=["initial-memory-pages"], ~conv=Cmdliner.Arg.int, ~doc="Initial number of WebAssembly memory pages", - 64, + 1, ); let maximum_memory_pages =