-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed

Description
I'm having a problem to run two instances of angular-fullstack at same machine, the first was the problem with the livereload port, but it was resolved after change the port, but there's another conflict with node-inspector, i think node-inspector isn't receiving the the parameters that was updated at Gruntfile.
For instance:
// Debugging with node inspector
'node-inspector': {
custom: {
options: {
'web-port': 1337,
'web-host': 'localhost',
'debug-port': 5857,
'save-live-edit': true,
'no-preload': true,
'stack-trace-limit': 4,
'hidden': ['node_modules']
}
}
},
The port 5858 still conflicting, any idea ?