From 0644c85e527b59b030ffb04bce8bf199c9ac372c 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 81515b04b832f..4920eb13cc8b6 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. */