From bbc808d56520f5cbd70068a246e5bda68bcbf54e Mon Sep 17 00:00:00 2001 From: Stephan Seidt Date: Wed, 27 May 2020 15:35:03 +0200 Subject: [PATCH] Add wasm to media types (denoland/deno#5896) --- http/file_server.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/http/file_server.ts b/http/file_server.ts index 81515b04b832..4920eb13cc8b 100755 --- a/http/file_server.ts +++ b/http/file_server.ts @@ -52,6 +52,7 @@ const MEDIA_TYPES: Record = { ".jsx": "text/jsx", ".gz": "application/gzip", ".css": "text/css", + ".wasm": "application/wasm", }; /** Returns the content-type based on the extension of a path. */