From 912022a6674c0bb5cef4928a511f860acd84b84d Mon Sep 17 00:00:00 2001 From: ErwanDecoster Date: Wed, 10 Sep 2025 09:07:28 +0200 Subject: [PATCH 1/4] feat: add redirects to vercel configuration --- vercel.json | 48 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 47 insertions(+), 1 deletion(-) diff --git a/vercel.json b/vercel.json index bd6fd8fa..839acd47 100644 --- a/vercel.json +++ b/vercel.json @@ -1,3 +1,49 @@ { - "cleanUrls": true + "cleanUrls": true, + "redirects": [ + { + "source": "/tools/:path*", + "destination": "/" + }, + { + "source": "/overview/what-we-do", + "destination": "/" + }, + { + "source": "/overview/helloWorld", + "destination": "/" + }, + { + "source": "/overview/helloWorld/:path*", + "destination": "/" + }, + { + "source": "/overview/use-case-demo", + "destination": "/" + }, + { + "source": "/overview/use-case-demo/:path*", + "destination": "/" + }, + { + "source": "/for-developers/:path*", + "destination": "/" + }, + { + "source": "/for-workers/:path*", + "destination": "/" + }, + { + "source": "/key-concepts/:path*", + "destination": "/" + }, + { + "source": "/use-cases/:path*", + "destination": "/" + }, + { + "source": "/help/:path*", + "destination": "/" + } + ] } From 9de3beb3dc72d4517786d5dabc9f58dc13f9c7cb Mon Sep 17 00:00:00 2001 From: ErwanDecoster Date: Wed, 10 Sep 2025 09:17:17 +0200 Subject: [PATCH 2/4] feat: add overflow-x-hidden to VPContent on home page --- .vitepress/theme/style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.vitepress/theme/style.css b/.vitepress/theme/style.css index a1eda7c4..6871ae38 100644 --- a/.vitepress/theme/style.css +++ b/.vitepress/theme/style.css @@ -445,6 +445,9 @@ input { :root { --vp-home-hero-name-color: var(--vp-c-text-1); } +.VPContent.is-home { + @apply overflow-x-hidden; +} .VPHero.has-image.VPHomeHero { @apply lg:pb-0; From 17d9299ff54d9f6302ce032609100f5530049fb6 Mon Sep 17 00:00:00 2001 From: ErwanDecoster Date: Wed, 10 Sep 2025 09:17:23 +0200 Subject: [PATCH 3/4] fix: adjust formatting for clarity in RLC token documentation --- src/get-started/overview/rlc.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/get-started/overview/rlc.md b/src/get-started/overview/rlc.md index 6063b9f5..52599603 100644 --- a/src/get-started/overview/rlc.md +++ b/src/get-started/overview/rlc.md @@ -70,9 +70,9 @@ payment. ::: info Circulating Supply -The entire circulating supply of RLC has already been minted. -There are no pending token unlocks or private allocations that could impact the -market. Since launch, iExec has been self-funded, without relying on VCs. +The entire circulating supply of RLC has already been minted. There are no +pending token unlocks or private allocations that could impact the market. Since +launch, iExec has been self-funded, without relying on VCs. ::: From e15fd3be2453aa0f16f914cdd209c1212d50d889 Mon Sep 17 00:00:00 2001 From: ErwanDecoster Date: Wed, 10 Sep 2025 09:46:47 +0200 Subject: [PATCH 4/4] feat: add permanent flag to redirects in Vercel configuration --- vercel.json | 33 ++++++++++++++++++++++----------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/vercel.json b/vercel.json index 839acd47..7e41ffe7 100644 --- a/vercel.json +++ b/vercel.json @@ -3,47 +3,58 @@ "redirects": [ { "source": "/tools/:path*", - "destination": "/" + "destination": "/", + "permanent": true }, { "source": "/overview/what-we-do", - "destination": "/" + "destination": "/", + "permanent": true }, { "source": "/overview/helloWorld", - "destination": "/" + "destination": "/", + "permanent": true }, { "source": "/overview/helloWorld/:path*", - "destination": "/" + "destination": "/", + "permanent": true }, { "source": "/overview/use-case-demo", - "destination": "/" + "destination": "/", + "permanent": true }, { "source": "/overview/use-case-demo/:path*", - "destination": "/" + "destination": "/", + "permanent": true }, { "source": "/for-developers/:path*", - "destination": "/" + "destination": "/", + "permanent": true }, { "source": "/for-workers/:path*", - "destination": "/" + "destination": "/", + "permanent": true }, { "source": "/key-concepts/:path*", - "destination": "/" + "destination": "/", + "permanent": true }, { "source": "/use-cases/:path*", - "destination": "/" + "destination": "/", + "permanent": true }, { "source": "/help/:path*", - "destination": "/" + "destination": "/", + "permanent": true } ] }