sst 2.34.5 → 2.34.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -157705,7 +157705,8 @@ function getContentType(filename, textEncoding) {
157705
157705
  [".jsonld"]: { mime: "application/ld+json", isText: true },
157706
157706
  [".xml"]: { mime: "application/xml", isText: true },
157707
157707
  [".pdf"]: { mime: "application/pdf", isText: false },
157708
- [".zip"]: { mime: "application/zip", isText: false }
157708
+ [".zip"]: { mime: "application/zip", isText: false },
157709
+ [".wasm"]: { mime: "application/wasm", isText: false }
157709
157710
  };
157710
157711
  const extensionData = extensions[ext3];
157711
157712
  const mime = extensionData?.mime ?? "application/octet-stream";