2
I’m trying to access my development environment served by Grunt and the site just doesn’t open. It’s like it doesn’t exist. Among other things I’m using livereload
, jshint
and karma
but I don’t think the problem is related to that.
My server settings are:
// The actual grunt server settings
connect: {
options: {
port: 9010,
hostname: 'localhost',
livereload: 35729
}
...