在开发 React 时使用 create-react-app 是非常方便的,它封装的打包功能,让发布 React 应用非常的方便
首先在项目根目录下使用 yarn build
命令打包,生成的静态文件会在 myproject/build
中
Nginx 中作如下配置即可1
2
3
4
5
6
7
8
9
10server {
server_name wxnacy.com;
root /myproject/build;
location / {
try_files $uri /index.html;
add_header Cache-Control public;
expires 1d;
}
}
最近热读
扫码关注公众号,或搜索公众号“温欣爸比”
及时获取我的最新文章