We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent baed696 commit c160fbbCopy full SHA for c160fbb
src/askui/chat/api/app.py
@@ -166,9 +166,16 @@ def mcp_server_connection_error_handler(
166
)
167
168
169
+origins = [
170
+ "http://localhost:4200",
171
+ "https://app.caesr.ai",
172
+ "https://app-dev.caesr.ai",
173
+ "https://hub.askui.com",
174
+ "https://hub-dev.askui.com",
175
+]
176
app.add_middleware(
177
CORSMiddleware,
- allow_origins=["*"],
178
+ allow_origins=origins,
179
allow_credentials=True,
180
allow_methods=["*"],
181
allow_headers=["*"],
0 commit comments