From 82e669193d9397104adf258ac36fbb16a5a2f904 Mon Sep 17 00:00:00 2001 From: Francis Cao Date: Sat, 14 Oct 2023 10:35:57 -0700 Subject: [PATCH] fix /settings redirect for cloud mode --- next.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index 4b773621..cf7dce7f 100644 --- a/next.config.js +++ b/next.config.js @@ -60,7 +60,7 @@ const redirects = [ { source: '/settings', destination: process.env.CLOUD_MODE - ? `${process.env.CLOUD_URL}/websites` + ? `${process.env.CLOUD_URL}/settings/websites` : '/settings/websites', permanent: true, },