Hi glitch also does not improve reconnecting when editing my project error I have tried many times for 1 hour turns out my project name : azzureta5
1 Like
Hey @ediciust, your project is very near it’s disk space limit, seemingly mostly from the contents of its git repo. Very full disk space can cause connection problems, among other issues.
You can clear at least some of this up using the following steps:
- open your project’s console
- type
echo 'json.sqlite >> .gitignoreand<enter>(this adds a gitignore file with the appropriate contents. if there are other files that your project edits regularly you can add those to the gitignore file as well) - type
git pruneand<enter> - type
git gcand<enter> - type
enable-pnpmand<enter>(this will move thenode_modulesfiles out of your project’s container and restart your project)
Then let us know how all of that goes.
1 Like