disable SSR mode
Browse files
app.py
CHANGED
|
@@ -204,4 +204,4 @@ with gr.Blocks(css=css) as app:
|
|
| 204 |
|
| 205 |
# Launch the app
|
| 206 |
if __name__ == "__main__":
|
| 207 |
-
app.launch(mcp_server=True)
|
|
|
|
| 204 |
|
| 205 |
# Launch the app
|
| 206 |
if __name__ == "__main__":
|
| 207 |
+
app.launch(ssr_mode=False, mcp_server=True)
|