I run yarn dev
or npm run dev
for my porject
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
My git will generate a lots of Uncommitted changes like .next/build-manifest.json
I check .gitignore file includes
# next.js
/.next/
/out/
Why I still get the issue ?