diff options
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.htaccess b/.htaccess index 4986f7d380f..ce84f0698c7 100644 --- a/.htaccess +++ b/.htaccess @@ -43,7 +43,7 @@ </IfModule> # Add cache control for static resources - <FilesMatch "\.(css|js|svg|gif|png|jpg|ico)$"> + <FilesMatch "\.(css|js|svg|gif|png|jpg|ico|wasm|tflite)$"> Header set Cache-Control "max-age=15778463" </FilesMatch> @@ -75,6 +75,7 @@ <IfModule mod_mime.c> AddType image/svg+xml svg svgz + AddType application/wasm wasm AddEncoding gzip svgz </IfModule> |