I have a vagrant box running on my windows machine. I want to make use of the command grunt serve. When running grunt serve, I want to access the site on my host machine as I have no browsers on the vagrant box. How would I acomplish this?
I have identified the port in the grunt file. At the moment that is set to 9000. However that is also in use by php as I have other apps using laravel (the box is homestead).
Usually I access my site at mysite.dev as I have set up hosts file and a homestead.yaml to map to the box. In that file I also see:
# ports:
# - send: 50000
# to: 5000
# - send: 7777
# to: 777
# protocol: udp
mysite.dev is nice but localhost:9001 or anything else is also fine. How should I proceed?