From fd4ab0ec6825479da8e76273132f94828b468c17 Mon Sep 17 00:00:00 2001 From: Venba Date: Thu, 6 Jun 2024 10:16:08 +0530 Subject: [PATCH] CHANGE_ --- build_web_dev.sh | 2 +- build_web_test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build_web_dev.sh b/build_web_dev.sh index c6ff6ab..f7d52b3 100755 --- a/build_web_dev.sh +++ b/build_web_dev.sh @@ -28,7 +28,7 @@ if [ -z "$BASE_HREF" ]; then fi # Build the web app for development with base href -flutter build web --debug --base-href "$BASE_HREF" +flutter build web --release --base-href "$BASE_HREF" # Optionally, remove the .env file after the build # rm .env diff --git a/build_web_test.sh b/build_web_test.sh index 5bdc17d..cee690d 100755 --- a/build_web_test.sh +++ b/build_web_test.sh @@ -28,7 +28,7 @@ if [ -z "$BASE_HREF" ]; then fi # Build the web app for test environment with base href -flutter build web --debug --base-href "$BASE_HREF" +flutter build web --release --base-href "$BASE_HREF" # Optionally, remove the .env file after the build # rm .env