I want to ignore the dist
folder. So when there is a change in the dist
folder, it doesn't appear in the commit
In the .gitignore file, there had exist /dist
like this :
.DS_Store
node_modules
/dist
But why when there are changes it still appears?
How can I solve this problem?