From b5affb116ca9c706dfe921297b2775beeac649ff Mon Sep 17 00:00:00 2001 From: jejolare Date: Sun, 14 Sep 2025 18:31:52 +0700 Subject: [PATCH] disable maintenance --- next.config.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/next.config.js b/next.config.js index a114d46..91658f9 100644 --- a/next.config.js +++ b/next.config.js @@ -3,16 +3,16 @@ const nextConfig = { reactStrictMode: true, async redirects() { return [ - // { - // source: '/', - // destination: '/dex', - // permanent: false, - // }, { - source: '/((?!maintenance).*)', // Match everything except "/maintenance" - destination: '/maintenance', + source: '/', + destination: '/dex', permanent: false, }, + // { + // source: '/((?!maintenance).*)', // Match everything except "/maintenance" + // destination: '/maintenance', + // permanent: false, + // }, ]; }, webpack: (config) => {