diff --git a/index.js b/index.js index 00e9ffb..cc520cc 100644 --- a/index.js +++ b/index.js @@ -1,6 +1,9 @@ import { Hocuspocus } from "@hocuspocus/server"; const server = new Hocuspocus({ + async onConnect({ connection }) { + connection.requiresAuthentication = false; + }, port: 4242, });