I have Flutter web app which is cache by browser. I need update it.
I see can force browser download new web app if set version for main.dart.js
: Stop saving in cache memory Flutter web Firebase hosting
BUT my current deployed Flutter web app have no version:
<script src="main.dart.js" type="application/javascript"></script>
So my question is: If I now add version will this method still work?
<script src="main.dart.js?version=1" type="application/javascript"></script>
Does query string method still work if previous version have no query string?