From 97856369d4ff28a87ac24b355e7fd2ff138ac08d Mon Sep 17 00:00:00 2001 From: fanferr <158005923+fanferr@users.noreply.github.com> Date: Wed, 20 May 2026 16:09:32 +0700 Subject: [PATCH] fix: update vercel.json to use Next.js framework --- vercel.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/vercel.json b/vercel.json index bd01143..c39a831 100644 --- a/vercel.json +++ b/vercel.json @@ -1,5 +1,6 @@ { - "framework": "vite", - "buildCommand": "cd frontend && npm install && npm run build", - "outputDirectory": "frontend/dist" + "framework": "nextjs", + "rootDirectory": "frontend", + "buildCommand": "npm run build", + "outputDirectory": ".next" }