Spaces:
Runtime error
Runtime error
File size: 317 Bytes
9fdb9dc 92119f4 9fdb9dc |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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() |