From 8e8bd857b0adead3bcf91cbdf96bd3d983a6f767 Mon Sep 17 00:00:00 2001 From: Irving M <68493865+moixllik@users.noreply.github.com> Date: Tue, 15 Aug 2023 04:50:07 -0500 Subject: [PATCH] vweb: add `application/wasm` to mime_types, for `.wasm` files (#19142) --- vlib/vweb/vweb.v | 1 + 1 file changed, 1 insertion(+) diff --git a/vlib/vweb/vweb.v b/vlib/vweb/vweb.v index 4c38afe1c9..d3054ee09b 100644 --- a/vlib/vweb/vweb.v +++ b/vlib/vweb/vweb.v @@ -119,6 +119,7 @@ pub const ( '.ttf': 'font/ttf' '.txt': 'text/plain' '.vsd': 'application/vnd.visio' + '.wasm': 'application/wasm' '.wav': 'audio/wav' '.weba': 'audio/webm' '.webm': 'video/webm'