My project has eternal loading, and does not want to load whatever I do, and the projects that I created yesterday work …
1 Like
What is the name of your project?
@chessebuilderman my project name is woolly-quiet
I will look at it. Thanks
Do you have an issue from accessing it from the glitch.me domain or is a problem accessing the editor. Cause I could access both fine. Do you mind telling me what country you live in so I can see if this is a DNS problem?
Hey @dsColDex your problem in this case is that you’re setting up your Express app to listen to a port that Glitch doesn’t open.
Instead of app.listen(3001);
try using app.listen(process.env.PORT);
and I think yur project will start responding.