From c644cede2ef4f8add44788e376753fedc803e610 Mon Sep 17 00:00:00 2001 From: arne Date: Sat, 27 Jan 2024 14:12:01 +0100 Subject: [PATCH] Fix stylesheet bundling --- client/index.html | 1 - client/src/main.ts | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/client/index.html b/client/index.html index db49110..a43bf19 100644 --- a/client/index.html +++ b/client/index.html @@ -4,7 +4,6 @@ ripples | compost.party -
diff --git a/client/src/main.ts b/client/src/main.ts index 1ad2071..166b08a 100644 --- a/client/src/main.ts +++ b/client/src/main.ts @@ -1,3 +1,5 @@ +import './style.css' + const presenceInfo = document.querySelector('#presence-info')! const canvas = document.querySelector('#canvas')! const socket = new WebSocket(`ws://${window.location.hostname}:3000`)