Skip to content

Commit 5e48a8c

Browse files
feat: add redirects to vercel configuration (#65)
1 parent 7993ce7 commit 5e48a8c

File tree

3 files changed

+64
-4
lines changed

3 files changed

+64
-4
lines changed

.vitepress/theme/style.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -445,6 +445,9 @@ input {
445445
:root {
446446
--vp-home-hero-name-color: var(--vp-c-text-1);
447447
}
448+
.VPContent.is-home {
449+
@apply overflow-x-hidden;
450+
}
448451

449452
.VPHero.has-image.VPHomeHero {
450453
@apply lg:pb-0;

src/get-started/overview/rlc.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ payment.
7070

7171
::: info Circulating Supply
7272

73-
The entire circulating supply of RLC has already been minted.
74-
There are no pending token unlocks or private allocations that could impact the
75-
market. Since launch, iExec has been self-funded, without relying on VCs.
73+
The entire circulating supply of RLC has already been minted. There are no
74+
pending token unlocks or private allocations that could impact the market. Since
75+
launch, iExec has been self-funded, without relying on VCs.
7676

7777
:::
7878

vercel.json

Lines changed: 58 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,60 @@
11
{
2-
"cleanUrls": true
2+
"cleanUrls": true,
3+
"redirects": [
4+
{
5+
"source": "/tools/:path*",
6+
"destination": "/",
7+
"permanent": true
8+
},
9+
{
10+
"source": "/overview/what-we-do",
11+
"destination": "/",
12+
"permanent": true
13+
},
14+
{
15+
"source": "/overview/helloWorld",
16+
"destination": "/",
17+
"permanent": true
18+
},
19+
{
20+
"source": "/overview/helloWorld/:path*",
21+
"destination": "/",
22+
"permanent": true
23+
},
24+
{
25+
"source": "/overview/use-case-demo",
26+
"destination": "/",
27+
"permanent": true
28+
},
29+
{
30+
"source": "/overview/use-case-demo/:path*",
31+
"destination": "/",
32+
"permanent": true
33+
},
34+
{
35+
"source": "/for-developers/:path*",
36+
"destination": "/",
37+
"permanent": true
38+
},
39+
{
40+
"source": "/for-workers/:path*",
41+
"destination": "/",
42+
"permanent": true
43+
},
44+
{
45+
"source": "/key-concepts/:path*",
46+
"destination": "/",
47+
"permanent": true
48+
},
49+
{
50+
"source": "/use-cases/:path*",
51+
"destination": "/",
52+
"permanent": true
53+
},
54+
{
55+
"source": "/help/:path*",
56+
"destination": "/",
57+
"permanent": true
58+
}
59+
]
360
}

0 commit comments

Comments
 (0)