RAP2 Github上用的serve启动
nohup serve -s ./build -p PORT &
但是服务经常莫名其妙的崩掉,所以我改用了nginx启动RAP2 Dolores
在nginx下添加:
server {
listen 你的端口;
server_name localhost;
root /..你的路径./dolores/build;
index index.html index.htm;
location / {
try_files $uri /index.html;
}
error_page 500 502 503 504 /500.html;
}
然后
nginx -s reload
访问IP:PORT即可