File size: 317 Bytes
9fdb9dc
 
 
 
92119f4
588b8ea
 
92119f4
9fdb9dc
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import gradio as gr
js = """
function redirect()
{
    const cloudflare_preview = 'https://41e124ab.gradio-website.pages.dev';
    const current_path = window.location.pathname;
    const url = cloudflare_preview + current_path
    window.location.href = url;
}
"""
with gr.Blocks(js=js) as demo:
  pass
demo.launch()