I am currently working on a Next.js/TypeScript web application project hosted on Vercel's free tier. To run my project, I use npm run dev in the app folder to start the front end and then navigate to the back-end folder in another terminal and run npm start for the backend. Here is a glimpse of my file structure:
app
|-back-end
|---back-end functionality
|-front-end functionality
However, the issue with Vercel is that deployment only triggers npm run start (which starts the front end), causing the back end functionalities to be unavailable. Is there a way to also deploy the back end or is it not feasible with the free tier?