Fix non-WASM search with polyfill and optimize minified scripts

This commit is contained in:
Bad Manners 2024-08-27 13:22:48 -03:00
parent fb30f1b416
commit 5521291e5b
7 changed files with 25 additions and 6 deletions

4
src/env.d.ts vendored
View file

@ -1,3 +1,7 @@
/// <reference path="../.astro/env.d.ts" />
/// <reference path="../.astro/types.d.ts" />
/// <reference types="astro/client" />
declare module "polywasm" {
export const WebAssembly: typeof globalThis.WebAssembly;
}