feat(frontend): scaffolding to build frontend

- Added `make fnginx` to have better dev experience
- Added app.conf to nginx configuration to handle frontend
This commit is contained in:
Maieul BOYER 2025-11-10 16:58:42 +01:00 committed by Maix0
parent 5dd6067c95
commit 0db41a440d
11 changed files with 186 additions and 10 deletions

View file

@ -0,0 +1,8 @@
location /app {
root /volumes/static/app/;
try_files /index.html =404;
}
location /assets {
root /volumes/static/app/;
}