From 818e3ab872986b056eab6a375b330128f69b0220 Mon Sep 17 00:00:00 2001 From: Avdhesh-Varshney <114330097+Avdhesh-Varshney@users.noreply.github.com> Date: Tue, 12 Nov 2024 20:50:30 +0530 Subject: [PATCH] fixes: deployment-setup-09 --- vercel.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vercel.json b/vercel.json index 2bea2206..b446d215 100644 --- a/vercel.json +++ b/vercel.json @@ -2,21 +2,21 @@ "version": 2, "builds": [ { - "src": "src/app/next/package.json", + "src": "package.json", "use": "@vercel/next" } ], + "cleanUrls": true, "rewrites": [ { "source": "/(.*)", - "destination": "/src/app/next/$1" + "destination": "/src/app/$1" } ], - "cleanUrls": true, "redirects": [ { "source": "/", - "destination": "/src/app/next", + "destination": "/src/app", "statusCode": 301 } ]