Skip to content

Commit 41b14cb

Browse files
committed
Update reps again.
We were accidentally depending on a local replicache. In order to fix had to nuke package-lock.json.
1 parent 41e0df9 commit 41b14cb

File tree

4 files changed

+1268
-5980
lines changed

4 files changed

+1268
-5980
lines changed

main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ app.prepare().then(() => {
3636
const reps = new Server(mutators);
3737

3838
httpServer.on("upgrade", (req, socket, head) => {
39-
const { pathname } = parse(req.url, true);
39+
const { pathname } = parse(req.url!, true);
4040
if (pathname === "/rs") {
4141
webSocketServer.handleUpgrade(req, socket, head, (ws) => {
4242
reps.handleConnection(ws, req.url!);

next-env.d.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
/// <reference types="next" />
2-
/// <reference types="next/types/global" />
32
/// <reference types="next/image-types/global" />
43

54
// NOTE: This file should not be edited

0 commit comments

Comments
 (0)