Current Situation
Made flutter web app and deploied it. I built release mode using code below.
flutter build web --web-renderer html --release
Purpose for release build was to deal with cors problem. Solution sorces
Question
Is webapp build in release mode lack any security function compare to normal build?
flutter build web
I seen documentation but I could not find anything about security. Web app will be used by my client so I would like to keep it safe for them.