VirtualWife
VirtualWife copied to clipboard
如何 让 网页不是在 http:localhost 运行 ,而是在 http:localhost:3005
如果想让 网页不是在 http:localhost 运行 ,而是在 http:localhost:3005
是不是要更改 /root/VirtualWife/domain-chatvrm/ 下 的package.json文件呢
[root@RainYun-ZDgShJEh domain-chatvrm]# cat package.json { "name": "chat-vrm", "version": "0.1.0", "private": true, "scripts": { "dev": "next dev -p 3005", "build": "next build", "build:with-lint": "npm run build && npm run lint", "start": "next start -p 3005", "export": "next export", "lint": "next lint" },
====================