Vue 3 project website link

After resolving numerous errors, my Vue project has successfully started on Glitch, but how can i vist webstie. The link with domain glitch.me is starting forever. The console displays the following message:

VITE v5.1.4 ready in 2186 ms

11:55 PM

āžœ Local: http://localhost:5173/

11:55 PM

āžœ Network: use --host to expose

1 Like

Glitch listens on port 3000 by default, not 5173 which is what vite likes to use. Try changing server.port to 3000 in your vite.config.js.

4 Likes