Grunt server does not use virtual host name for my app..vhost and httpd are set up but grunt is not using them
So I am trying to setup my app with a name rather than using 127 0 0 1. Every single time I run grunt, my address is http://127.0.0.1:9000/#/ ... I've tried many things and nothing is working...I always get redirected to that place. Here are my files: httpd.conf <VirtualHost *:80> DocumentRoot "/Users/myusername/Sites/MyApp/app" ServerName myapp.dev <Directory "/Users/myusername/Sites/MyApp/app"> Options FollowSymLinks MultiViews Indexes AllowOverride All Order allow,deny Deny from none Allow from all </Directory> </VirtualHost> hosts 127.0.0.1 myapp.dev ::1 myapp.dev Gruntfile.js // Generated