Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -803,8 +803,8 @@ def handle_deploy_legacy(code):
|
|
803 |
|
804 |
# 3) 배포 URL 추출
|
805 |
import re
|
806 |
-
match = re.search(r'https?://[\\w.-]+\\.vercel\\.app', result)
|
807 |
|
|
|
808 |
if match:
|
809 |
deployment_url = match.group(0)
|
810 |
# 4) iframe으로 직접 렌더링
|
|
|
803 |
|
804 |
# 3) 배포 URL 추출
|
805 |
import re
|
|
|
806 |
|
807 |
+
match = re.search(r'https?://[\w.-]+\.vercel\.app', result)
|
808 |
if match:
|
809 |
deployment_url = match.group(0)
|
810 |
# 4) iframe으로 직접 렌더링
|