From 1c7f9da320470c00fb3524ec5e98b88a310c11a4 Mon Sep 17 00:00:00 2001 From: Mike Cao Date: Wed, 17 Sep 2025 22:41:54 -0700 Subject: [PATCH] Updated redirect config. --- next.config.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/next.config.ts b/next.config.ts index e229cb44..40c94fa2 100644 --- a/next.config.ts +++ b/next.config.ts @@ -117,22 +117,22 @@ const redirects = [ { source: '/settings', destination: '/settings/preferences', - permanent: true, + permanent: false, }, { source: '/teams/:id', destination: '/teams/:id/websites', - permanent: true, + permanent: false, }, { source: '/teams/:id/settings', destination: '/teams/:id/settings/preferences', - permanent: true, + permanent: false, }, { source: '/admin', destination: '/admin/users', - permanent: true, + permanent: false, }, ];