I run my nextjs project by
JavaScript
x
2
1
npm run dev
2
NOT
JavaScript
1
2
1
npm run build
2
but it automatically create the .next folder. and after I tried to delete that folder but it automatically generated again. why??
I don’t expect to generate the .next folder by this command:
JavaScript
1
2
1
npm run dev
2
Advertisement
Answer
You are running your project with
JavaScript
1
2
1
npm run dev
2
Once the project is launched, .next
folder will be created to store page cache and some features to speed up your project. While project running, some files will be added to .next
folder during your dev
usage. If you delete you .next folder during usage, you will have errors
on the pages – you should restart your npm run dev