fix fetch proxy behavior

This commit is contained in:
Avad3 2024-07-18 19:27:47 -04:00
parent bcbb660cc6
commit ab226abb42
4 changed files with 18 additions and 12 deletions

View file

@ -1,3 +1,5 @@
import BareClient from "@mercuryworkshop/bare-mux";
import "./scope.ts";
import "./window.ts";
import "./event.ts";
@ -20,5 +22,10 @@ declare global {
interface Window {
$s: any;
$sImport: any;
$client: BareClient;
}
}
const client = new BareClient();
export { client };