From 6f8ce3757a73aaca430fea69e671f1df13fe9545 Mon Sep 17 00:00:00 2001 From: rohitmalhotra1420 Date: Mon, 2 Dec 2024 21:28:15 +0530 Subject: [PATCH] reverted the changes --- next.config.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/next.config.js b/next.config.js index 02dc526..b455ec6 100644 --- a/next.config.js +++ b/next.config.js @@ -9,14 +9,6 @@ const nextConfig = { basePath: process.env.NEXT_PUBLIC_BASE_PATH || '', // Default to empty if not defined // You can also use assetPrefix to set the base path for static assets assetPrefix: process.env.NEXT_PUBLIC_BASE_PATH || '', - async rewrites() { - return [ - { - source: '/:path*', - destination: '/', - }, - ]; - }, }; module.exports = nextConfig;