# HG changeset patch # User am@osimis.io # Date 1538575999 -7200 # Node ID 482631e4e290741edfa50b4b18abef74004cfd5d # Parent 49b15205947236a36b7635407d44dd136deb3048 added mime type for WASM in WebSkeleton diff -r 49b152059472 -r 482631e4e290 Plugins/Samples/WebSkeleton/Framework/Plugin.cpp --- a/Plugins/Samples/WebSkeleton/Framework/Plugin.cpp Wed Oct 03 14:59:52 2018 +0200 +++ b/Plugins/Samples/WebSkeleton/Framework/Plugin.cpp Wed Oct 03 16:13:19 2018 +0200 @@ -66,6 +66,10 @@ { return "application/xml"; } + else if (extension == ".wasm") + { + return "application/wasm"; + } else if (extension == ".png") { return "image/png";