We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ace6760 commit 30bf87dCopy full SHA for 30bf87d
packages/cardano-services/src/Http/HttpServer.ts
@@ -86,7 +86,7 @@ export class HttpServer extends RunnableModule {
86
protected async initializeImpl(): Promise<void> {
87
this.app = express();
88
89
- if (this.#config.allowedOrigins) {
+ if (this.#config.allowedOrigins?.length) {
90
this.app.use(cors(corsOptions(new Set(this.#config.allowedOrigins))));
91
}
92
0 commit comments