调整readme

This commit is contained in:
moyin
2025-12-06 17:12:24 +08:00
parent 9e0b559c05
commit 419d2939f6
61 changed files with 3688 additions and 4802 deletions

View File

@@ -75,6 +75,19 @@ http {
index index.html;
try_files $uri $uri/ /index.html;
# Godot specific file types
location ~* \.(wasm)$ {
types { application/wasm wasm; }
expires 1y;
add_header Cache-Control "public, immutable";
}
location ~* \.(pck)$ {
types { application/octet-stream pck; }
expires 1y;
add_header Cache-Control "public, immutable";
}
# Cache static assets
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ {
expires 1y;