From 0040dfaec07ca07289114cf9da7eab87e5d2ac21 Mon Sep 17 00:00:00 2001 From: Dennis Smolek Date: Sat, 11 Jul 2026 01:14:31 +0900 Subject: [PATCH] redirect /denoiser to its self-hosted docs site denoiser (pmndrs/denoiser) hosts its docs on GitHub Pages at https://pmndrs.github.io/denoiser/docs/ (built with ghcr.io/pmndrs/docs). Same pattern as uikit and xr. Co-Authored-By: Claude Fable 5 --- next.config.mjs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/next.config.mjs b/next.config.mjs index 8bb618bd2..6d115d93f 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -91,6 +91,11 @@ const nextConfig = { destination: 'https://pmndrs.github.io/xr/docs/:slug*', permanent: true, }, + { + source: '/denoiser/:slug*', + destination: 'https://pmndrs.github.io/denoiser/docs/:slug*', + permanent: true, + }, ] }, }