Skip to content

Commit acef54c

Browse files
committed
Serve the console's web manifest with its own MIME type
The host returns .webmanifest as application/octet-stream, so Chrome declines to install the app and the new home-screen icons go unused. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01GGfNkc8c2tte9v7ci1cMqD
1 parent d34e157 commit acef54c

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.htaccess

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Chrome will not install a web app if the manifest comes back as
2+
# application/octet-stream, which is what this host serves it as by default —
3+
# .webmanifest is not in cPanel's MIME table. Without this the home-screen
4+
# icons ship but never get used.
5+
<IfModule mod_mime.c>
6+
AddType application/manifest+json .webmanifest
7+
</IfModule>

0 commit comments

Comments
 (0)