I am currently seeing the following log in the the browser console:
LiveView assert version mismatch. Javascript version 1.0.0-rc.6 vs. server 0.20.17. To avoid issues, please ensure that your assets use the same version as the server.
How do I downgrade the javascript assets version to 0.20.17?
Another thing that might be at play is browser cache. If you’re developing your app, you can clear the cache for localhost or open the dev tools in your browser and disable cache.
Had this problem but in the other way around, upgraded to lv 1.0.3 and javascript was complaining about being on 0.20.17. Fixed it by just deleting the files inside /priv/assets/ and rebuilding assets by mix assets.build in case anyone has the same problem.
Hello, i know this is an old thread but i want to add another item to look at. I got the same message on completely new upgraded version of Phoenix with clean and new project. However still got the
asset version mismatch. JavaScript version 1.0.10 vs. server 1.1.17. To avoid issues, please ensure that your assets use the same version as the server.
The issue was with deploying it to already present nginx configuration where i had caching enabled. After i removed the caching then error disappeared. So another item to watch is your proxy and if any caching is set along the way.