Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow CorsOptionsDelegate as cors options #641

Merged
merged 2 commits into from Feb 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/server.ts
Expand Up @@ -9,7 +9,7 @@ import { serialize } from "cookie";
import { Server as DEFAULT_WS_ENGINE } from "ws";
import { IncomingMessage, Server as HttpServer } from "http";
import { CookieSerializeOptions } from "cookie";
import { CorsOptions } from "cors";
import { CorsOptions, CorsOptionsDelegate } from "cors";

const debug = debugModule("engine");

Expand Down Expand Up @@ -105,7 +105,7 @@ export interface ServerOptions {
/**
* the options that will be forwarded to the cors module
*/
cors?: CorsOptions;
cors?: CorsOptions | CorsOptionsDelegate;
/**
* whether to enable compatibility with Socket.IO v2 clients
* @default false
Expand Down