From 689b537b5b810ff737b95091578bf0338bca44cf Mon Sep 17 00:00:00 2001 From: nearlysean Date: Tue, 7 May 2024 16:02:11 -0600 Subject: [PATCH 1/3] add subdirectory redirect to airtable form for audit program --- next.config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/next.config.js b/next.config.js index f0ff2bfd1..81f317d13 100644 --- a/next.config.js +++ b/next.config.js @@ -88,6 +88,11 @@ const nextConfig = { destination: '/applications?requestAuth=1&createAccount=1', permanent: false, }, + { + source: '/auditrequest', + destination: 'https://airtable.com/appr1nBRRGx2PTJVh/shrpa99vKKW3xafso', + permanent: false, + }, { source: '/blog/getting-started-with-the-near-wallet', destination: 'https://wallet.near.org', From ef6bf0f7a349d181de00d5e65e9a624a9607c5e7 Mon Sep 17 00:00:00 2001 From: nearlysean Date: Tue, 7 May 2024 16:08:34 -0600 Subject: [PATCH 2/3] add permanent tag --- next.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index 81f317d13..4ec011993 100644 --- a/next.config.js +++ b/next.config.js @@ -91,7 +91,7 @@ const nextConfig = { { source: '/auditrequest', destination: 'https://airtable.com/appr1nBRRGx2PTJVh/shrpa99vKKW3xafso', - permanent: false, + permanent: true, }, { source: '/blog/getting-started-with-the-near-wallet', From 56430322e8c78144b3d60afca08258dd0c7dc931 Mon Sep 17 00:00:00 2001 From: nearlysean Date: Tue, 7 May 2024 17:01:56 -0600 Subject: [PATCH 3/3] change flag to false --- next.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index 4ec011993..81f317d13 100644 --- a/next.config.js +++ b/next.config.js @@ -91,7 +91,7 @@ const nextConfig = { { source: '/auditrequest', destination: 'https://airtable.com/appr1nBRRGx2PTJVh/shrpa99vKKW3xafso', - permanent: true, + permanent: false, }, { source: '/blog/getting-started-with-the-near-wallet',