@quasar/app v2.0.8 released!
-
https://github.com/quasarframework/quasar/releases/tag/%40quasar%2Fapp-v2.0.8
Important fix:
- fix(app): service-worker.js is not delivered correctly (with workbox v5) after user revisits website #7665
-
Not sure if this component or another is responsible, but since updating to quasar 1.13.1 and app 2.0.8, my startup browser pref (firefox) is no longer being respected. It will always open Safari now instead after issuing my
sudo quasar dev -m spa
command -
@ssuess maybe firefox is not your default browser, have a look in system preferences settings
-
@iodoli It should not matter if Firefox is my default browser (although it is in fact) because up until now you could always specify the browser you wanted to use inside of the conf file like so:
devServer: { // open: true, // opens browser window automatically open: 'firefox', },
And this has worked perfectly for me until the latest updates.
-
There might be problems in the “open” package. I’ll revert it to its previous (working) version.
-
based on this link (https://github.com/sindresorhus/open/issues/177), I thought maybe capitalizing
Firefox
(because I am on Mac OS) might make a difference, but alas, it still opens Safari. -
@ssuess please upgrade to “@quasar/app” v2.0.9. It uses the good old version of “open” package.
-
just saw that was available and upgraded. That fixes this problem, thanks!