Commit ·
e5b11cf
1
Parent(s): 456c2d1
fix: disable XSRF and WebsocketCompression via explicit config to allow huggingface iframe WSS connection
Browse files- .streamlit/config.toml +5 -0
.streamlit/config.toml
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[server]
|
| 2 |
+
enableCORS = true
|
| 3 |
+
enableXsrfProtection = false
|
| 4 |
+
enableWebsocketCompression = false
|
| 5 |
+
|