This commit is contained in:
2026-04-28 19:48:40 +08:00
parent ad2420775e
commit 379bacf023
2 changed files with 11 additions and 0 deletions

9
nginx.conf Normal file
View File

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

2
vue.Dockerfile Normal file
View File

@@ -0,0 +1,2 @@
FROM nginx:alpine
COPY dist /usr/share/nginx/html