update to excalidraw 0.18.0

This commit is contained in:
2026-02-12 20:32:53 +01:00
parent 6061d4ab94
commit fe58cf7e89
4 changed files with 1870 additions and 45 deletions
@@ -0,0 +1 @@
../../../frontend
-36
View File
@@ -1,36 +0,0 @@
server {
listen 80;
server_name draw.louiscreates.com;
# Frontend static build
root /var/www/excalidash;
index index.html;
# SPA routing
location / {
try_files $uri $uri/ /index.html;
}
# API reverse proxy (Express mounted at /api)
location /api/ {
proxy_pass http://127.0.0.1:6768/api/;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
# Socket.IO websocket/polling endpoint
location /api/socket.io/ {
proxy_pass http://127.0.0.1:6768/api/socket.io/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_read_timeout 600s;
}
}
+1 -1
View File
@@ -17,7 +17,7 @@
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/utilities": "^3.2.2",
"@excalidraw/excalidraw": "0.17.6",
"@excalidraw/excalidraw": "0.18.0",
"@types/lodash": "^4.17.20",
"axios": "^1.13.2",
"clsx": "^2.1.1",
+1868 -8
View File
File diff suppressed because it is too large Load Diff