Serve production frontend via Nginx static build

This commit is contained in:
2026-03-02 15:50:34 -03:00
parent b5b74845f2
commit d50169b883
8 changed files with 45 additions and 34 deletions

12
frontend/nginx.conf Normal file
View File

@@ -0,0 +1,12 @@
server {
listen 5173;
listen [::]:5173;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}