Skip to content

Commit

Permalink
Fixes WASM mimetype for static file server in a production-bundled app
Browse files Browse the repository at this point in the history
  • Loading branch information
ggaabe committed Apr 29, 2022
1 parent f03e1a6 commit 7c0d58c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions ios-template/App/App/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,25 @@
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<true/>
<key>UTExportedTypeDeclarations</key>
<array>
<dict>
<key>UTTypeConformsTo</key>
<array>
<string>public.data</string>
</array>
<key>UTTypeDescription</key>
<string>WebAssembly</string>
<key>UTTypeIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>UTTypeTagSpecification</key>
<dict>
<key>public.filename-extension</key>
<string>wasm</string>
<key>public.mime-type</key>
<string>application/wasm</string>
</dict>
</dict>
</array>
</dict>
</plist>

0 comments on commit 7c0d58c

Please sign in to comment.