added nginx config and updated react-scripts

This commit is contained in:
2022-12-22 23:52:50 -03:00
parent 8c2251753d
commit 7c108fac36
2 changed files with 11 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}