diff --git a/src/index.ts b/src/index.ts index 189f2b2..adfa560 100644 --- a/src/index.ts +++ b/src/index.ts @@ -16,7 +16,9 @@ import { const app = express(); // Set up CORS middleware for Express -app.use(cors()); +app.use(cors({ + origin: "*", +})); // Create an HTTP server const httpServer: HTTPServer = createServer(app);