最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

next.js - Localhost not working in only one nextjs project but it is working in other project - Stack Overflow

programmeradmin1浏览0评论

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

发布评论

评论列表(0)

  1. 暂无评论