Skip to content

Commit 5478d6e

Browse files
Stabilize root Vercel deployment
1 parent 7a9bcc0 commit 5478d6e

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed

index.html

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta http-equiv="refresh" content="0; url=https://world-model-gym.vercel.app/" />
6+
<meta name="robots" content="noindex" />
7+
<meta name="viewport" content="width=device-width, initial-scale=1" />
8+
<title>Redirecting to WorldModel Gym</title>
9+
<style>
10+
body {
11+
margin: 0;
12+
min-height: 100vh;
13+
display: grid;
14+
place-items: center;
15+
font-family: system-ui, sans-serif;
16+
background: #f5f8ff;
17+
color: #11223a;
18+
}
19+
20+
main {
21+
max-width: 38rem;
22+
padding: 2rem;
23+
text-align: center;
24+
}
25+
26+
a {
27+
color: #ff7a3d;
28+
}
29+
</style>
30+
</head>
31+
<body>
32+
<main>
33+
<h1>Redirecting to WorldModel Gym</h1>
34+
<p>
35+
This root Vercel project is only kept so GitHub deployment checks stay healthy.
36+
Continue to the live app at
37+
<a href="https://world-model-gym.vercel.app/">world-model-gym.vercel.app</a>.
38+
</p>
39+
</main>
40+
</body>
41+
</html>

vercel.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"cleanUrls": true,
3+
"redirects": [
4+
{
5+
"source": "/",
6+
"destination": "https://world-model-gym.vercel.app/",
7+
"permanent": false
8+
},
9+
{
10+
"source": "/(.*)",
11+
"destination": "https://world-model-gym.vercel.app/$1",
12+
"permanent": false
13+
}
14+
]
15+
}

0 commit comments

Comments
 (0)