Hey Good People ![]()
I’m following a Bootcamp Course on IC ![]()
I’m getting this error:
Error: Failed to get frontend address.
I hope these help:
I did deploy with arguments.
Using port 8000

Thank you in advance ![]()
Hey Good People ![]()
I’m following a Bootcamp Course on IC ![]()
I’m getting this error:
Error: Failed to get frontend address.
I hope these help:
I did deploy with arguments.
Using port 8000

Thank you in advance ![]()
Change webpack file to use 127.0.0.1 instead of local host
Hey and thank you @cryptoisgood ![]()
I made the change but the issue persists.
Updated target on webpack:
I changed the Port to 8001 ![]()
It works past that step ![]()
Thank you ![]()
I ran into this a lot recently and sure enough changing the port temporarily fixes the issue but doesn’t address the root cause, which is that a previous instance of your app (or some other process) is still running on port 8000.
To find the process (for Mac/*nix users) run:
lsof -i tcp:8000
…that will get the pid of the running process, then kill it with:
kill <processPid>