Skip to content

Commit 1bda847

Browse files
authoredAug 14, 2024··
fix: align CorsOptions.origin type with @types/cors (#17836)
1 parent e16bf1f commit 1bda847

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎packages/vite/src/node/http.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,10 @@ export interface CommonServerOptions {
7575
export interface CorsOptions {
7676
origin?:
7777
| CorsOrigin
78-
| ((origin: string, cb: (err: Error, origins: CorsOrigin) => void) => void)
78+
| ((
79+
origin: string | undefined,
80+
cb: (err: Error, origins: CorsOrigin) => void,
81+
) => void)
7982
methods?: string | string[]
8083
allowedHeaders?: string | string[]
8184
exposedHeaders?: string | string[]

0 commit comments

Comments
 (0)
Please sign in to comment.