♻️ Refactor frontend Docker build setup, use plain NodeJS, use custom Nginx config, fix build for old Vue (#555)

This commit is contained in:
Sebastián Ramírez
2023-11-15 23:02:09 +01:00
committed by GitHub
parent 02223e1e1b
commit fa4ea018c3
3 changed files with 17 additions and 4 deletions

11
src/frontend/nginx.conf Normal file
View File

@@ -0,0 +1,11 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
}
include /etc/nginx/extra-conf.d/*.conf;
}