Spaces:
Runtime error
Runtime error
import gradio as gr | |
js = """ | |
function redirect() | |
{ | |
const current_path = window.location.pathname; | |
const cloudflare_preview = 'https://41e124ab.gradio-website.pages.dev'; | |
const url = current_path + cloudflare_preview | |
window.location.href = url; | |
} | |
""" | |
with gr.Blocks(js=js) as demo: | |
pass | |
demo.launch() |