diff --git a/build.ts b/build.ts
index d781256..4ab44b9 100644
--- a/build.ts
+++ b/build.ts
@@ -87,7 +87,9 @@ if (process.argv.includes("watch")) {
continue;
}
last = Date.now();
- await build();
+ try {
+ await build();
+ } catch {}
}
})();
(async () => {
@@ -96,7 +98,9 @@ if (process.argv.includes("watch")) {
continue;
}
last = Date.now();
- await build();
+ try {
+ await build();
+ } catch {}
}
})();
}
diff --git a/src/webpage/invite.html b/src/webpage/invite.html
index dd99741..3199aaf 100644
--- a/src/webpage/invite.html
+++ b/src/webpage/invite.html
@@ -31,6 +31,6 @@
-
+