I am learing Laravel, and following a fullstack tutorial. The application is Laravel+Vue.
When I started Laravel on port 8000 with php artisan serve it opened as it should. Then I created Vue app inside src folder. It should be started with command npm run dev on port 5173. When I open it, I don’t see default Vue starting page:
I only see this:
How can I start the right server on right port to make frontend of my app?

