From 891f2d64517768dc97e7307ed82b847d758e8602 Mon Sep 17 00:00:00 2001 From: Charles Garrett Date: Tue, 20 Feb 2024 09:26:15 -0500 Subject: [PATCH] fix: with the recent /papers rebuild we lost a direct route to /papers/nightshade --- next.config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/next.config.js b/next.config.js index 54888f903..f4c60f16d 100644 --- a/next.config.js +++ b/next.config.js @@ -56,6 +56,11 @@ const nextConfig = { source: '/da', destination: '/data-availability', permanent: true, + }, + { + source: '/papers/nightshade', + destination: '/files/nightshade.pdf', + permanent: true, } ]; },