Skip to content

Commit

Permalink
Allow manifest download
Browse files Browse the repository at this point in the history
  • Loading branch information
joejcollins committed Mar 11, 2022
1 parent c4b8aab commit 54633ae
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ image:
ports:
- port: 8001
onOpen: ignore
visibility: public
- port: 9001
onOpen: ignore
vscode:
Expand Down
5 changes: 5 additions & 0 deletions src/app/.htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,8 @@
<IfModule !authz_core_module>
Deny from all
</IfModule>
<IfModule mod_mime.c>
# Manifest files
AddType application/manifest+json webmanifest
AddType text/cache-manifest appcache
</IfModule>
3 changes: 2 additions & 1 deletion src/web.config
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
</rewrite>
<staticContent>
<mimeMap fileExtension=".json" mimeType="application/json" />
<mimeMap fileExtension=".webmanifest" mimeType="application/manifest+json" />
</staticContent>
</system.webServer>
</configuration>
</configuration>

0 comments on commit 54633ae

Please sign in to comment.