VERSIONS
Windows: 11 (ARM)** (24H2 (OS Build 26100.2314))
Node.JS: v22.11.0 (Windows ARM64)
Next.JS: 14.2.3
React: ^18
package.json:
{
"name": "wf-quizzes",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate-api": "node ./bin/generate-api-specs.mjs"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@headlessui/react": "^2.0.4",
"@nextui-org/react": "^2.4.8",
"@nextui-org/system": "^2.2.6",
"@nextui-org/theme": "^2.2.11",
"@nextui-org/tooltip": "^2.0.41",
"@react-hookz/web": "^24.0.4",
"@react-spring/web": "^9.7.3",
"@reduxjs/toolkit": "^2.2.6",
"@types/react-toastify": "^4.0.2",
"@types/react-window": "^1.8.8",
"@uiw/react-color": "^2.3.2",
"ag-grid-react": "^32.1.0",
"axios": "^1.7.7",
"buffer": "^6.0.3",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"dnd-kit": "^0.0.2",
"embla-carousel-react": "^8.1.8",
"file-saver": "^2.0.5",
"framer-motion": "^11.2.11",
"json": "^11.0.0",
"jwt-decode": "^4.0.0",
"libphonenumber-js": "^1.11.4",
"localforage": "^1.10.0",
"next": "14.2.3",
"next-auth": "^4.24.7",
"next-intl": "^3.17.2",
"next-svgr": "^0.0.2",
"pako": "^2.1.0",
"react": "^18",
"react-audio-visualize": "^1.1.3",
"react-calendar": "^5.0.0",
"react-colorful": "^5.6.1",
"react-dom": "^18",
"react-redux": "^9.1.2",
"react-scan": "^0.0.12",
"react-textarea-autosize": "^8.5.3",
"react-tinder-card": "^1.6.4",
"react-toastify": "^10.0.6",
"react-window": "^1.8.10",
"redux-persist": "^6.0.0",
"redux-persist-indexeddb-storage": "^1.0.4",
"redux-persist-transform-encrypt": "^5.1.1",
"reselect": "^5.1.1",
"sass": "^1.77.2",
"scss": "^0.2.4",
"swagger-typescript-api": "^13.0.3",
"tailwindcss": "^3.4.14",
"tinycolor2": "^1.6.0",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/file-saver": "^2.0.7",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^20",
"@types/pako": "^2.0.3",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"eslint-plugin-react": "^7.36.1",
"globals": "^15.9.0",
"typescript": "^5",
"typescript-eslint": "^8.5.0"
}
}
PROBLEM
After starting the project and doing some actions on the page, localhost just terminates in a random point of time after random click without any error:
What’s interesting, when I changed NodeJS to x64, then everything began working okay without such drops. At the same time, when I updated one of my projects from Next.JS 14.2.3 to Next.JS 15.0.3, it solved the problem. But unlike the project where it helped, I can’t upgrade my current project due to amount of code conflicts after upgrade.
Also I tried to check if CPU or RAM are overloaded so it could lead to it but no
PLEASE let me know what else I can share here to understand conditions and environment better.



