Serve APK files with correct MIME headers, prevent download buttons from stretching with screenshots, and update hero badge and copy. Co-authored-by: Cursor <cursoragent@cursor.com>
7 lines
226 B
ApacheConf
7 lines
226 B
ApacheConf
<IfModule mod_headers.c>
|
|
<FilesMatch "\.apk$">
|
|
Header set Content-Type "application/vnd.android.package-archive"
|
|
Header set Content-Disposition "attachment; filename=\"spaceswallet.apk\""
|
|
</FilesMatch>
|
|
</IfModule>
|