You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 26, 2024. It is now read-only.
After looking at the docs: https://www.npmjs.com/package/http-server
I wanted to access my app from another machine.
Existing:
"start": "http-server -a localhost -p 8000 -c-1 ./app",My config:
"start": "http-server -a 0.0.0.0 -p 8000 -c-1 ./app",What is the reason to use
localhostin theangular-seedrepo?