chore: Add Dockerfile and nginx.conf for production build

This commit is contained in:
2026-03-13 05:01:04 +00:00
parent aa0239abca
commit 0768696ead
2 changed files with 32 additions and 0 deletions

15
nginx.conf Normal file
View File

@@ -0,0 +1,15 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location /assets/ {
expires 1y;
add_header Cache-Control "public, immutable";
}
}