0%

react部署在nginx注意

出现Unpected Application Error

路由的index.js里面createBrowserRouter时添加{basename:’/pan’}参数

nginx配置文件添加,否则刷新路由时会报找不到/pan/home

1
2
3
4
5
location /pan {
root html;
index index.html;
try_files $uri $uri/ /pan/index.html =404;
}