From 12861fbaad591c70a3123ef6a06f4403925debcc Mon Sep 17 00:00:00 2001 From: Amy Date: Sat, 15 Jun 2024 16:49:42 -0700 Subject: [PATCH] specify that cargo optimization requires --release This patch adds `--release` to the optimized Cargo instructions. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8fd22c5..6879c20 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ To create an optimised version of the app: ```bash npm run build -cargo build +cargo build --release ``` ## Built With @@ -72,4 +72,4 @@ v0.1.4: update packages because `cargo run` failed v0.1.3: Added authentication example with private cookies -v0.1.2: Added Bulma CSS styling \ No newline at end of file +v0.1.2: Added Bulma CSS styling