From 97da7144c33226d0780b3e463a34f666cf8c9ce0 Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Tue, 17 Mar 2026 11:09:51 +0100 Subject: [PATCH 1/2] docs: Redirect from old `/generated` pages to new routes --- docs/src/pages/404.astro | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 docs/src/pages/404.astro diff --git a/docs/src/pages/404.astro b/docs/src/pages/404.astro new file mode 100644 index 00000000..36664894 --- /dev/null +++ b/docs/src/pages/404.astro @@ -0,0 +1,33 @@ +--- +import BaseLayout from '../layouts/BaseLayout.astro'; +--- + + + + +
+

404

+

+ The page you're looking for doesn't exist or has been moved. +

+ +
+
From 46f7dbdbe8ffa67c8681a13c394a2ef687069a52 Mon Sep 17 00:00:00 2001 From: Lukas Stracke Date: Tue, 17 Mar 2026 11:14:26 +0100 Subject: [PATCH 2/2] fix hard-coded base path --- docs/src/pages/404.astro | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/src/pages/404.astro b/docs/src/pages/404.astro index 36664894..a2b25ae0 100644 --- a/docs/src/pages/404.astro +++ b/docs/src/pages/404.astro @@ -1,12 +1,13 @@ --- import BaseLayout from '../layouts/BaseLayout.astro'; + +const base = import.meta.env.BASE_URL; --- -