From docs: # Launch the dev server and automatically open it in
your default browser when ready
yarn dev --open
in such case we get:
yarn run v1.7.0
$ npm-run-all --parallel dev:back dev:front --open
ERROR: Invalid Option: --open
error Command failed with exit code 1.
this fix pass options from dev script to dev:front(vue-cli-service)
From docs: # Launch the dev server and automatically open it in
your default browser when ready
yarn dev --open
in such case we get: yarn run v1.7.0 $ npm-run-all --parallel dev:back dev:front --open ERROR: Invalid Option: --open error Command failed with exit code 1.
this fix pass options from dev script to dev:front(vue-cli-service)