So, I have one Nextjs Project and when I run the project in terminal it says Ready and successfully complied but when i open the https://localhost:3000 it is not working in any browser it says this page isn't working while I try to run another project is it working perfectly fine but only one (project A) is not working. Let's call (project A) the one that is broken and second (project B) Porject B is working how it should be but project A is not working where as the setups are very similar. No error so far in console and network
I have already tried:
npm run clean (removing .nextjs folder).
Deleting the project and cloning from the github.
Switching the folder of project.
Removing the cookie and local data
Below is the scripts from package.json
"scripts": {
"clean": "rmdir /s /q .next",
"dev": "next dev --experimental-https",
"build": "next build",
"start": "next start -p 3001 ",
"lint": "eslint --no-cache \"src/**/*.{js,ts,jsx,tsx}\"",
"prepare": "husky",
"format": "prettier --write \"src/**/*.{js,ts,jsx,tsx}\""
},
I am working with Nextjs and it's version is 15.1.0 and for CSS I'm using tailwindcss