Add integration
Browse files- backend/settings.py +3 -0
backend/settings.py
CHANGED
|
@@ -67,6 +67,9 @@ if SECURE_HSTS_SECONDS > 0:
|
|
| 67 |
SECURE_HSTS_PRELOAD = os.environ.get("SECURE_HSTS_PRELOAD", "False") == "True"
|
| 68 |
|
| 69 |
|
|
|
|
|
|
|
|
|
|
| 70 |
# Application definition
|
| 71 |
|
| 72 |
INSTALLED_APPS = [
|
|
|
|
| 67 |
SECURE_HSTS_PRELOAD = os.environ.get("SECURE_HSTS_PRELOAD", "False") == "True"
|
| 68 |
|
| 69 |
|
| 70 |
+
# Allow embedding in an iframe only from Hugging Face Spaces (for integration)
|
| 71 |
+
X_FRAME_OPTIONS = 'ALLOW-FROM https://huggingface.co/'
|
| 72 |
+
|
| 73 |
# Application definition
|
| 74 |
|
| 75 |
INSTALLED_APPS = [
|