diff --git a/frontend/nginx.conf b/frontend/nginx.conf new file mode 100644 index 0000000..305536b --- /dev/null +++ b/frontend/nginx.conf @@ -0,0 +1,8 @@ +server { + listen 5173; + + location / { + root /usr/share/nginx/html; + try_files $uri $uri/ /index.html; + } +}