You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gzip off; # Do not attempt dynamic gzip compression on an already compressed file
22
+
add_header Content-Encoding gzip; # The correct MIME type here would be application/octet-stream, but due to Safari bug https://bugs.webkit.org/show_bug.cgi?id=247421, it's preferable to use MIME Type application/gzip instead.
23
+
default_type application/javascript;
24
+
}
25
+
26
+
# On-disk gzip-precompressed WebAssembly files:
27
+
location~ .+\.wasm\.gz$ {
28
+
gzip off; # Do not attempt dynamic gzip compression on an already compressed file
29
+
add_header Content-Encoding gzip;
30
+
# Enable streaming WebAssembly compilation by specifying the correct MIME type for
0 commit comments