Closed mwaqashameed closed 1 year ago
It's not an error. That's how Vite launches the app and shows the URL. You're expected to open that URL in the browser.
Note, yarn start
is a shortcut for the yarn workspace app dev
Vite command. You can check the full list of Vite CLI options like this:
$ yarn workspace app vite --help
For example, you can launch the app and make it open the browser by adding --open
CLI argument:
$ yarn workspace app vite dev --open
When I try to run with "yarn start" it is giving following error. ➜ Local: http://localhost:5173/ ➜ Network: use --host to expose
can you help me out ? Thanks,