我试图在 Ubuntu 16.04 服务器中部署 ReactJS 应用,但是当我执行命令时:
serve -s build
这是我的package.json
文件:
{
"name": "client",
"version": "0.1.0",
"private": true,
"dependencies": {
"bootstrap": "^4.3.1",
"history": "^4.9.0",
"jquery": "^3.4.0",
"moment": "^2.24.0",
"popper.js": "^1.15.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"react-scripts": "2.1.8"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}
我收到此错误:
ERROR: Cannot copy to clipboard: Command failed: xsel --clipboard --input
xsel: Can't open display: (null)
: Inappropriate ioctl for device
┌──────────────────────────────────────────────────┐
│ │
│ Serving! │
│ │
│ - Local: http://localhost:5000 │
│ - On Your Network: http://server_IP:5000 │
│ │
└──────────────────────────────────────────────────┘
但是该应用程序尚未加载,并且无法在端口5000
上访问。
我怎么知道呢?
答案 0 :(得分:4)
我遇到了同样的问题,我通过添加“ -n”选项来解决该问题。
“-n,--no-clipboard不要将本地地址复制到剪贴板中”
答案 1 :(得分:0)
这与剪贴板模块有关,请尝试使用npm卸载将其从您的APP中删除“在package.json中查找剪贴板模块名称”,然后尝试重建并查看会发生什么情况?
如果问题仍然存在,请尝试删除您的node_modules并重新安装
答案 2 :(得分:0)
通过将nginx
服务器直接指向我的 ReactJS 项目的/build
文件夹,尤其是指向index.html
文件,我避免了该问题。
通过这种方式,我没有问题中描述的问题,因为我不再使用serve -s build
命令执行服务。