From 9474a595c2cf87618de93b0444652c4da11e45cb Mon Sep 17 00:00:00 2001 From: CoolElectronics Date: Sat, 19 Aug 2023 19:19:08 -0400 Subject: [PATCH] use google font cdn instead of hosting locally --- client/src/RTCTransport.ts | 1 - frontend/index.html | 2 +- frontend/src/entry.ts | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/client/src/RTCTransport.ts b/client/src/RTCTransport.ts index d9273dd..755aad5 100644 --- a/client/src/RTCTransport.ts +++ b/client/src/RTCTransport.ts @@ -45,7 +45,6 @@ export class RTCTransport extends Transport { this.dataChannel.onclose = onclose; this.dataChannel.onmessage = async (event) => { - console.log(event); let buf = event.data; this.ondata(buf); }; diff --git a/frontend/index.html b/frontend/index.html index 9fd653e..5691d93 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -5,7 +5,7 @@ - + diff --git a/frontend/src/entry.ts b/frontend/src/entry.ts index 1f29919..eb420ff 100644 --- a/frontend/src/entry.ts +++ b/frontend/src/entry.ts @@ -1,6 +1,5 @@ import { registerRemoteListener } from "bare-client-custom"; import App from "./App.svelte"; -import "@fontsource/cabin"; import "./index.css"; if (import.meta.env.VITE_ADRIFT_DEV) {