From 241ef9760f4dc49cdd87fe8edcf708867ab3fb76 Mon Sep 17 00:00:00 2001 From: Timur Ercan Date: Tue, 6 Dec 2022 21:40:06 +0100 Subject: [PATCH] remove redirect --- apps/web/next.config.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/apps/web/next.config.js b/apps/web/next.config.js index c2454efe3..40065543f 100644 --- a/apps/web/next.config.js +++ b/apps/web/next.config.js @@ -1,14 +1,14 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - async redirects() { - return [ - { - source: "/", - destination: "/dashboard", - permanent: true, - }, - ]; - }, + // async redirects() { + // return [ + // { + // source: "/", + // destination: "/dashboard", + // permanent: true, + // }, + // ]; + // }, reactStrictMode: true, swcMinify: true, distDir: "build",