Deno.serve(io.handler(), {
port: 3000,
});import { Server } from "https://deno.land/x/socket_io@0.2.0/mod.ts";
const io = new Server({
cors: {
origin: [
"https://localhost:5173",
],
credentials: true,
methods: ["GET", "POST"],
},
});