I'm trying to access my Grunt-served development environment and the site just does not open. It is as if it did not exist. Among other features I'm using livereload
, jshint
and karma
but I think the problem is not related to that.
My server settings are:
// The actual grunt server settings
connect: {
options: {
port: 9010,
hostname: 'localhost',
livereload: 35729
}
...