From 2ee79d4840d025621f82c28c4189bec15ec5350a Mon Sep 17 00:00:00 2001 From: ericli Date: Thu, 17 Aug 2023 14:27:24 +0800 Subject: [PATCH] fix: remove redirect --- apps/web/next.config.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/apps/web/next.config.js b/apps/web/next.config.js index b14c40c..712cd80 100644 --- a/apps/web/next.config.js +++ b/apps/web/next.config.js @@ -6,13 +6,4 @@ module.exports = { config.resolve.fallback = { fs: false, net: false, tls: false }; return config; }, - async redirects() { - return [ - { - source: '/', - destination: '/home', - permanent: true, - }, - ] - }, };