After successfully deploying the project on Vercel, all domains are returning a 404: NOT_FOUND error. The project consists of two parts: a React application and Sanity Studio. The vercel.json configuration specifies the build paths for both parts, but neither is accessible after deployment. There were no errors in the build logs, and everything was uploaded and built successfully.
Current vercel.json configuration:
{ "builds": [ { "src": "hitech_landingpage/package.json", "use": "@vercel/static-build", "config": { "distDir": "build" } }, { "src": "hitech_landingpage/hitech/package.json", "use": "@vercel/static-build", "config": { "distDir": "dist" } } ], "routes": [ { "src": "/", "dest": "/hitech-landing/build/index.html" }, { "src": "/(.*)", "dest": "/hitech-landing/build/index.html" }, { "src": "/studio(.*)", "dest": "/hitech/dist/$1" } ]}my github repository https://github.com/hitechgroupcentralasia123/hitech_landingpage.git
domain https://hi-techkz.com/