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