TripoSplat-WebGPU-Demo / e2e-web-debug.html
Yosun's picture
Deploy TripoSplat WebGPU app
3f8befc verified
Raw
History Blame Contribute Delete
692 Bytes
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="noindex" />
<title>TripoSplat WebRunner legacy debug redirect</title>
<script>
const parameters = new URLSearchParams(window.location.search)
if (!parameters.has('debug')) parameters.set('debug', '1')
const query = parameters.toString()
window.location.replace(`/e2e-web${query ? `?${query}` : ''}${window.location.hash}`)
</script>
</head>
<body>
<p>This legacy address opens <a href="/e2e-web?debug=1">the main WebRunner diagnostic mode</a></p>
</body>
</html>