The server is running but found this "This localhost page can’t be found" see attached images
Asked
Active
Viewed 2,295 times
1
-
Where are the attached images? Can you show a [mcve] of the code that caused this, [as text](https://meta.stackoverflow.com/questions/285551/why-should-i-not-upload-images-of-code-data-errors)? Thanks. – ggorlen Jan 08 '23 at 21:27
-
Does this answer your question? [Vite Server is running but not working on localhost](https://stackoverflow.com/questions/70694187/vite-server-is-running-but-not-working-on-localhost) – ggorlen Jan 08 '23 at 21:28
1 Answers
3
Try to access https://localhost:4200 as your dev server listening this port. If you want to change 4200 port to 3000 you should be able to do it using flag -p 3000

Georgy
- 1,879
- 2
- 9
- 14
-
thanks for your reply, I try after changing port but still finding same issue this project is running on one system but not running on mine – Muhammad Raheel Jan 12 '22 at 12:28
-
-
-
-
-
you should change port here, in this command, like: "start": "vite --https --port 3000" – Georgy Jan 12 '22 at 16:56