I've got an issue with contents of a directory not being including with git. It doesn't appear in .gitignore which seems to be the solution to similar questions.
Here's my .gitignore:
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# production
/client/build
# misc
.DS_Store
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
The directory is "server", which appears, however no contents are within it when running
git ls-tree -r main --name-only
.
Here's my root directory.
Any ideas?
Thanks in advance!