报错情况

error when starting dev server:
Error: listen EACCES: permission denied 127.0.0.1:80
    at Server.setupListenHandle [as _listen2] (node:net:1415:21)
    at listenInCluster (node:net:1480:12)
    at GetAddrInfoReqWrap.doListen [as callback] (node:net:1629:7)
    at GetAddrInfoReqWrap.onlookup [as oncomplete] (node:dns:111:8)

启动项目加个端口任意

npm run dev -- --port 81

报错原因

文件package.json 端口80冲突

  "scripts": {
    "dev": "vite --port 80--open",   //端口80冲突
    "build": "vue-tsc && vite build",
    "preview": "vite preview"
  },

原文地址:https://blog.csdn.net/beiback/article/details/129489305

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_34858.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注