admin管理员组

文章数量:1344321

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:

  1. npm run clean (removing .nextjs folder).

  2. Deleting the project and cloning from the github.

  3. Switching the folder of project.

  4. 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

本文标签: nextjsLocalhost not working in only one nextjs project but it is working in other projectStack Overflow